commit 3409d1160a89b969bc8c8a2d272424dc9646f77a
Author: Simon Watson <spw01@protonmail.com>
Date: Thu Feb 17 11:16:16 2022 -0500
Added ckgit() and cleaned up helpers a bit
diff --git a/bashrc/bashrc-all b/bashrc/bashrc-all
index 3d7fb4f..9709bc7 100644
--- a/bashrc/bashrc-all
+++ b/bashrc/bashrc-all
@@ -92,6 +92,28 @@ pb () {
curl -F "file=@-" http://chate.io:669
}
+ckgit () {
+ if [ ! -z $1 ]; then
+ DIR=$1
+ else
+ DIR="$HOME/Repos"
+ fi
+
+ GIT_PATH=$(which git);
+
+ for dirp in $($EXA_PATH -d $DIR/*/); do
+ if [[ -d "$dirp/.git" ]]; then
+ RET=$($GIT_PATH -C $dirp status --porcelain)
+ if [[ ! -z "$RET" ]]; then
+ echo "* $dirp"
+ echo "$RET"
+ echo ""
+ fi
+ fi
+ done
+}
+
+
# For use with emacs vterm
# See: https://github.com/akermu/emacs-libvterm
vterm_printf(){
diff --git a/emacs/elisp/helpers.el b/emacs/elisp/helpers.el
index 5e13e00..e33ac23 100644
--- a/emacs/elisp/helpers.el
+++ b/emacs/elisp/helpers.el
@@ -42,11 +42,10 @@
(insert *last-pb-url*)
(clipboard-kill-region (point-min) (point-max))))
-(defun display-pb (&optional url-arg)
- "Display either last pb url content, or passed URL.
-Can also be used to display HTML/text via curl in new buf."
+(defun display-pb ()
+ "Display last pb url content, see *last-pb-url*"
(interactive)
- (let* ((url (if url-arg url-arg *last-pb-url*))
+ (let* ((url (if *last-pb-url* *last-pb-url* (error "*last-pb-url* void")))
(r
(shell-command-to-string (format "curl -s %s" url))))
(switch-to-buffer