mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Allow plugins sudo and thefuck to be loaded before vi-mode (#8087)
This commit is contained in:
parent
c4c620adcd
commit
97c0d0a563
2 changed files with 6 additions and 2 deletions
|
@ -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…
Reference in a new issue