Allow plugins sudo and thefuck to be loaded before vi-mode (#8087)

master
SomeDer 7 years ago committed by Marc Cornellà
parent c4c620adcd
commit 97c0d0a563
  1. 4
      plugins/sudo/sudo.plugin.zsh
  2. 4
      plugins/thefuck/thefuck.plugin.zsh

@ -28,4 +28,6 @@ sudo-command-line() {
}
zle -N sudo-command-line
# Defined shortcut keys: [Esc] [Esc]
bindkey "\e\e" sudo-command-line
bindkey -M emacs '\e\e' sudo-command-line
bindkey -M vicmd '\e\e' sudo-command-line
bindkey -M viins '\e\e' sudo-command-line

@ -15,4 +15,6 @@ fuck-command-line() {
}
zle -N fuck-command-line
# Defined shortcut keys: [Esc] [Esc]
bindkey "\e\e" fuck-command-line
bindkey -M emacs '\e\e' fuck-command-line
bindkey -M vicmd '\e\e' fuck-command-line
bindkey -M viins '\e\e' fuck-command-line

Loading…
Cancel
Save