diff options
author | William Carroll <wpcarro@gmail.com> | 2016-10-21T15·51-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2016-10-21T15·51-0400 |
commit | f6efe8ca2b20e58a056d7b4d8092b4ede1f3291d (patch) | |
tree | e13e765501becaf607ecaf37f64c949d3559f3f5 /functions | |
parent | e3147857a09daacf8c19401f050f892bf009b141 (diff) |
Adds new keybinds and bash functions for git
Diffstat (limited to 'functions')
-rw-r--r-- | functions/misc_functions.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/functions/misc_functions.sh b/functions/misc_functions.sh index 17c13d7a6ae9..ed7f6293c08f 100644 --- a/functions/misc_functions.sh +++ b/functions/misc_functions.sh @@ -1,3 +1,15 @@ +# fuzzily-find-file +function wgff { + echo $(find . -type f | fzf) +} + + +# fuzzily-find-branch +function wgfb { + echo $(git branch -a | fzf) +} + + # download files to /tmp directory function wdownload { URL="$1" |