about summary refs log tree commit diff
path: root/functions
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2016-10-21T15·51-0400
committerWilliam Carroll <wpcarro@gmail.com>2016-10-21T15·51-0400
commitf6efe8ca2b20e58a056d7b4d8092b4ede1f3291d (patch)
treee13e765501becaf607ecaf37f64c949d3559f3f5 /functions
parente3147857a09daacf8c19401f050f892bf009b141 (diff)
Adds new keybinds and bash functions for git
Diffstat (limited to 'functions')
-rw-r--r--functions/misc_functions.sh12
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"