summaryrefslogtreecommitdiff
path: root/zsh/functions.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/functions.zsh')
-rw-r--r--zsh/functions.zsh15
1 files changed, 15 insertions, 0 deletions
diff --git a/zsh/functions.zsh b/zsh/functions.zsh
index 6bd9482..6003dea 100644
--- a/zsh/functions.zsh
+++ b/zsh/functions.zsh
@@ -25,3 +25,18 @@ function note {
fi
popd
}
+
+function fuzzy_history {
+ local choice
+ choice=($(fc -l 0 | fzf --tac --no-sort))
+ [[ $#choice -gt 1 ]] || return
+ HISTNO=$(sed 's/[^\d]//g' <<< $choice[1])
+ BUFFER=$choice[2,-1]
+}
+
+function fuzzy_dirstack {
+ local choice
+ choice=$(dirs -pl | fzf --tac --no-sort)
+ [[ -n $choice ]] && cd $choice
+ zle .reset-prompt
+}