From 88b835fb2b387aed85845bec83c1618c2ae9bc0a Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sun, 4 Feb 2024 17:44:17 +0000 Subject: Adds lookforsyncerrors and gloga aliases --- fish2024/functions/gloga.fish | 4 ++++ fish2024/functions/lookforsyncerrors.fish | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 fish2024/functions/gloga.fish create mode 100644 fish2024/functions/lookforsyncerrors.fish (limited to 'fish2024') diff --git a/fish2024/functions/gloga.fish b/fish2024/functions/gloga.fish new file mode 100644 index 0000000..98da2aa --- /dev/null +++ b/fish2024/functions/gloga.fish @@ -0,0 +1,4 @@ +function gloga --wraps='git log --oneline --decorate --graph --all' --description 'alias gloga=git log --oneline --decorate --graph --all' + git log --oneline --decorate --graph --all $argv + +end diff --git a/fish2024/functions/lookforsyncerrors.fish b/fish2024/functions/lookforsyncerrors.fish new file mode 100644 index 0000000..d2fdefb --- /dev/null +++ b/fish2024/functions/lookforsyncerrors.fish @@ -0,0 +1,4 @@ +function lookforsyncerrors --wraps='find . -iname "*sync*"' --description 'alias lookforsyncerrors=find . -iname "*sync*"' + find . -iname "*sync*" $argv + +end -- cgit v1.2.3