Browse Source

fix(copybuffer): define CTRL+O binding for all keymaps (#6442)

Fixes #6442
Marc Cornellà 2 years ago
parent
commit
81edb03c52
1 changed files with 3 additions and 1 deletions
  1. 3 1
      plugins/copybuffer/copybuffer.plugin.zsh

+ 3 - 1
plugins/copybuffer/copybuffer.plugin.zsh

@@ -11,4 +11,6 @@ copybuffer () {
 
 
 zle -N copybuffer
 zle -N copybuffer
 
 
-bindkey "^O" copybuffer
+bindkey -M emacs "^O" copybuffer
+bindkey -M viins "^O" copybuffer
+bindkey -M vicmd "^O" copybuffer