5

我发现 Vim 快捷方式nmap <enter> o<esc>or nmap <enter> O<esc>,它用回车键插入一个空行,非常有用。但是,它们对插件造成了严重破坏;例如,ag.vim它使用要跳转到的文件名填充快速修复列表。在这个窗口中按回车(应该跳转到文件)给我错误E21: Cannot make changes; modifiable is off

为了避免在快速修复缓冲区中应用映射,我可以这样做:

" 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>

这可行,但我真正想要的是避免在任何不可修改的缓冲区中进行映射,而不仅仅是在快速修复窗口中。例如,映射在位置列表中也没有任何意义(并且可能会破坏其他使用它的插件)。如何检查我是否在可修改的缓冲区中?

4

2 回答 2

8

您可以检查映射中的选项modifiable( ma)。

但是,您不必创建函数并在映射中调用它。该<expr>映射是为这些用例设计的:

nnoremap <expr> <Enter> &ma?"O\<esc>":"\<cr>"

(上面的行没有经过测试,但我认为应该可以。)

有关详细信息<expr> mapping,请执行:h <expr>

于 2016-05-13T13:34:33.083 回答
6

使用'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>
于 2016-05-13T13:34:02.707 回答