=== modified file 'zsh-functions/site_zshrc_70_keybindings' --- zsh-functions/site_zshrc_70_keybindings 2016-08-11 18:15:14 +0000 +++ zsh-functions/site_zshrc_70_keybindings 2016-08-03 22:07:41 +0000 @@ -5,9 +5,8 @@ autoload -U edit-command-line zle -N edit-command-line -## Superseded by bracketed paste mode: -# autoload -Uz url-quote-magic -# zle -N self-insert url-quote-magic +autoload -Uz url-quote-magic +zle -N self-insert url-quote-magic bindboth() { bindkey -M viins "$@" === modified file 'zsh-functions/site_zshrc_75_bracketed_paste' --- zsh-functions/site_zshrc_75_bracketed_paste 2016-08-11 18:15:14 +0000 +++ zsh-functions/site_zshrc_75_bracketed_paste 2016-08-03 22:07:41 +0000 @@ -51,11 +51,7 @@ #use bindkey -v here with vi mode probably. maybe you want to track #if you were in ins or cmd mode and restore the right one. bindkey -v - case $_paste_content in - (http:*) _paste_content=${(qqq)_paste_content};; - (https:*) _paste_content=${(qqq)_paste_content};; - esac - LBUFFER+=$_paste_content + LBUFFER+=${_paste_content} unset _paste_content }