这是我的vimrc的配置文件,但它在我的mac上不起作用,
"ctrl + left
imap <silent> <C-left> <esc><C-W><left>
vmap <silent> <C-left> <esc><C-W><left>
nmap <silent> <C-left> <C-W><left>
"ctrl + right
imap <silent> <C-right> <esc><C-W><right>
vmap <silent> <C-right> <esc><C-W><right>
nmap <silent> <C-right> <C-W><right>
"ctrl + up
imap <silent> <C-up> <esc><C-W><up>
vmap <silent> <C-up> <esc><C-W><up>
nmap <silent> <C-up> <C-W><up>
"ctrl + down
imap <silent> <C-down> <esc><C-W><down>
vmap <silent> <C-down> <esc><C-W><down>
nmap <silent> <C-down> <C-W><down>
那么如何配置呢?我应该使用哪个字符而不是“C”? 感谢
答案 0 :(得分:1)
对于Cmd-Down,您似乎需要<D-down>
(对于其他人,您需要-right / -up - / - )。似乎在我的测试中工作。