diff --git a/config/zsh/interactive/bindings b/config/zsh/interactive/bindings index 568f766..9b22c08 100644 --- a/config/zsh/interactive/bindings +++ b/config/zsh/interactive/bindings @@ -23,17 +23,6 @@ autoload fancy-ctrl-z zle -N fancy-ctrl-z bindkey '^Z' fancy-ctrl-z -# Allow for magic such as url-quote-magic to apply when your terminal supports -# bracketed paste. -autoload -Uz bracketed-paste-magic -zle -N bracketed-paste bracketed-paste-magic - -# url-quote-magic will automatically quote special chars in URLs pasted into -# the terminal. -autoload -Uz url-quote-magic -url-quote-magic-with-highlight() { url-quote-magic; _zsh_highlight } -zle -N self-insert url-quote-magic-with-highlight - __fzf-z() { z -l | tac | cut -c 12- | fzf --preview 'tree -FCL 2 {}' }