Shift+Enter same as CTRL-F? #1256
-
Hi all. I've noticed that |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is the correct but confusing behavior. In Vim,
You can always remap |
Beta Was this translation helpful? Give feedback.
This is the correct but confusing behavior. In Vim,
<CR>
acts just like<Down>
in normal mode, which just moves cursor down by one line. If you do:help <S-Down>
, it does the same thing as<PageDown>
andCTRL-F
, which also means<S-CR>
does the same thing and move down half a page.<S-CR>
doesn't work in a lot of terminals though as this is not a mapping you can use. Thererfore it's just using the regular<CR>
even when you press shift.You can always remap
<S-CR>
to something else if there is aparticualr need for it.