我发现Vim快捷方式nmap <enter> o<esc>
或nmap <enter> O<esc>
,使用回车键插入一个空行,非常有用。但是,它们会对插件造成严重破坏;例如,ag.vim
,它使用要跳转到的文件名填充quickfix列表。在此窗口中按Enter键(应该跳转到文件)会给出错误E21: Cannot make changes; modifiable is off
。
为避免在quickfix缓冲区中应用映射,我可以这样做:
" insert blank lines with <enter>
function! NewlineWithEnter()
if &buftype ==# 'quickfix'
execute "normal! \<CR>"
else
execute "normal! O\<esc>"
endif
endfunction
nnoremap <CR> :call NewlineWithEnter()<CR>
这很有用,但我真正想要的是避免在任何不可修改的缓冲区中进行映射,而不仅仅是在quickfix窗口中。例如,映射在位置列表中也没有意义(并且可能会破坏使用它的其他一些插件)。如何检查我是否在可修改的缓冲区中?
答案 0 :(得分:7)
您可以在地图中查看选项modifiable
(ma
)。
但是,您不必创建函数并在映射中调用它。 <expr>
映射是针对这些用例而设计的:
nnoremap <expr> <Enter> &ma?"O\<esc>":"\<cr>"
(上面一行未经过测试,但我认为应该进行测试。)
有关<expr> mapping
的详细信息,请执行:h <expr>
答案 1 :(得分:5)
使用'modifiable'
:
" insert blank lines with <enter>
function! NewlineWithEnter()
if !&modifiable
execute "normal! \<CR>"
else
execute "normal! O\<esc>"
endif
endfunction
nnoremap <CR> :call NewlineWithEnter()<CR>