2017-07-25 18:00 GMT+03:00 mattn <[email protected]>: > Thanks your suggestion. BTW, I don't use neovim but I heard neovim have > tmap/tnoremap? to remap terminal keys.
Neovim has separate terminal mode, with separate commands for mapping (:tmap/:tnoremap). So `<C-w>`, as well as everything else is sending input directly to terminal as-is, with `<C-\><C-n>` and `<C-\><C-\>` being an exceptions for consistency reasons. As expected, if you are not satisfied with a way to exit terminal mode you just tnoremap something to `<C-\><C-n>` and tnoremap `<C-\><C-n>` to something if needed. > > — > You are receiving this because you are subscribed to this thread. > Reply to this email directly, view it on GitHub > > -- > -- > You received this message from the "vim_dev" maillist. > Do not top-post! Type your reply below the text you are replying to. > For more information, visit http://www.vim.org/maillist.php > > --- > You received this message because you are subscribed to the Google Groups > "vim_dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
