You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
" When Tmux 'focus-events' option is on, Tmux will send <Esc>[O when the" window loses focus and <Esc>[I when it gains focus.exec"set <F24>=\<Esc>[O"exec"set <F25>=\<Esc>[I"
However, I would like to use <F24> for another mapping. In some terminals (e.g. xterm-256color) & neovim environments, <F24> is <Shift-F12>. As this plugin reserves for <Esc>[O, I cannot map custom commands to <Shift-F12>. Is the choice of or compulsory, or can we use another special key sequence?
The text was updated successfully, but these errors were encountered:
In vanilla vim, <F24> and <Shift-F12> are recognized differently (this might vary depending on TERM). However in neovim they are treated same. So for neovim, I can currently work around by simply not using this plugin (See #1).
In the plugin code,
where we have a normal map
However, I would like to use
<F24>
for another mapping. In some terminals (e.g. xterm-256color) & neovim environments,<F24>
is<Shift-F12>
. As this plugin reserves for<Esc>[O
, I cannot map custom commands to<Shift-F12>
. Is the choice of or compulsory, or can we use another special key sequence?The text was updated successfully, but these errors were encountered: