vim 键盘上的 <c-e> 键是哪个?

which is <c-e> key on keyboard for vim?

我在 vim.and 中安装了 sparkup 插件,他们说按 <c-e>。我搜索了很多 google,但没有找到如何按下这个键?请告诉我它们是什么意思。是组合键吗?一个键?还是别的?

<c-e>(通常描述为 <C-e>)对于 "Control-e"

是 shorthand

A key with the Ctrl key modifier is represented using the <C-key> notation. For example Ctrl-R is represented using <C-R>. A key with the Shift key modifier is represented using the <S-key> notation. For example Shift-F2 is represented using <S-F2>. A key with the Alt key modifier is represented using <A-key> or <M-key> notation. You can combine one or more key modifiers. For example, to represent Ctrl+Shift+F3 you can use <C-S-F3>. Super is represented <D-key> in MacVim and <T-key> in gtk2 gvim. In gvim it doesn't work with all the keys.

其他特殊字符的Vim键记法如下:

<BS>           Backspace
<Tab>          Tab
<CR>           Enter
<Enter>        Enter
<Return>       Enter
<Esc>          Escape
<Space>        Space
<Up>           Up arrow
<Down>         Down arrow
<Left>         Left arrow
<Right>        Right arrow
<F1> - <F12>   Function keys 1 to 12
#1, #2..#9,#0  Function keys F1 to F9, F10
<Insert>       Insert
<Del>          Delete
<Home>         Home
<End>          End
<PageUp>       Page-Up
<PageDown>     Page-Down
<bar>          the '|' character, which otherwise needs to be escaped '\|'

来源:http://vim.wikia.com/wiki/Mapping_keys_in_Vim_-Tutorial(Part_2)