-
When I press Alt+r I want to escape and then I want to switch to the previous tab. This doesn`t work:
If I just simply add
then this doesn't work when the focus is in a textarea or any input |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
So. In the new version of chrome, the "Save tab group" feature has broken the tab switching mechanism, this could be your problem. Also try using ^ to switch tabs. |
Beta Was this translation helpful? Give feedback.
-
For chain binding, read - https://github.com/gdh1995/vimium-c/wiki/Auto-run-a-tree-of-commands |
Beta Was this translation helpful? Give feedback.
-
To jump across tabs whatever mode Vimium C is in (normal, insert, or anything else), the recommended way is to use If a key mapping uses
|
Beta Was this translation helpful? Give feedback.
To jump across tabs whatever mode Vimium C is in (normal, insert, or anything else), the recommended way is to use
chrome://extensions/shortcuts
andshortcut userCustomized1 visitPreviousTab
If a key mapping uses
<a-r>
, then it only takes effects in normal mode, but not in insert mode.To trigger commands in insert mode, you'll need
:i
to indicate it's insert-mode-enabled:$then
is a parameter ofmap
(andrun
), but notmapKey
;<esc>
is a key but not a command name. So,map <a-r:i> dispatchE…