summaryrefslogtreecommitdiff
path: root/functions/fl
diff options
context:
space:
mode:
authorTill Höppner2017-05-15 14:34:02 +0200
committerTill Höppner2017-05-15 14:34:02 +0200
commit6e144bcba48c7fd7a707693874a9bb311afd2c33 (patch)
tree43b9166c5d6817f01312f22a0fcd846a06dc69f4 /functions/fl
parentd027cc4db3c84e0333b1b3136484b412a2f86a67 (diff)
downloadzsh-6e144bcba48c7fd7a707693874a9bb311afd2c33.tar.gz
zsh-6e144bcba48c7fd7a707693874a9bb311afd2c33.tar.xz
zsh-6e144bcba48c7fd7a707693874a9bb311afd2c33.zip
Add fuzzy cd/locate/kill
Diffstat (limited to 'functions/fl')
-rw-r--r--functions/fl3
1 files changed, 3 insertions, 0 deletions
diff --git a/functions/fl b/functions/fl
new file mode 100644
index 0000000..d73a525
--- /dev/null
+++ b/functions/fl
@@ -0,0 +1,3 @@
+# fda - including hidden directories
+local dir
+dir=$(locate / | fzf +m) && cd "$dir"