Vim 以粘贴模式重新映射

Vim remap in paste mode

是否可以在粘贴模式下重新映射。

例如,我使用 inoremap jk <esc> 在插入模式下将 jk 重新映射到 <ESC>,因此我可以轻松退出正常模式。但是当我处于 :pastetoggle 的粘贴模式时,我的重新映射不再起作用。我通过 :help map-modes 寻求帮助,但找不到任何与粘贴模式相关的内容。

来自:help 'paste'

[...]
When the 'paste' option is switched on (also when it was already on):
        - mapping in Insert mode and Command-line mode is disabled
[...] 

解决重映射在粘贴模式下不起作用的一个解决方法是使用 vim-unimpairedyoyO命令粘贴。至少这样离开插入模式和粘贴设置也会设置 nopaste 并且当你不想那么多时你不会发现自己处于粘贴模式。

这可能对您有所帮助。它对我没有帮助,唉,我使用 GNU 屏幕,它不支持带括号的 xterm 粘贴转义码

(来自 https://coderwall.com/p/if9mda/automatically-set-paste-mode-in-vim-when-pasting-in-insert-mode

:inoremap jj <esc>
:inoremap jk <esc>
let &t_SI .= "\<Esc>[?2004h"
let &t_EI .= "\<Esc>[?2004l"

" This resets paste mode after insert
inoremap <special> <expr> <Esc>[200~ XTermPasteBegin()

function! XTermPasteBegin()
  set pastetoggle=<Esc>[201~
  set paste
  echo "DONE"
  return ""
endfunction

这是我发现的另一种方法。当您点击退出以离开插入模式时,它会自动关闭粘贴模式。此外,颜色还可以帮助您了解自己所处的模式。hth.

" Mode Indication -Prominent!
function! InsertStatuslineColor(mode)
  if a:mode == 'i'
    hi statusline ctermfg=red
  elseif a:mode == 'r'
    hi statusline ctermfg=blue
  else
    hi statusline ctermfg= magenta
  endif
endfunction

function! InsertLeaveActions()
  hi statusline ctermfg=green
  set nopaste
endfunction

au InsertEnter * call InsertStatuslineColor(v:insertmode)
au InsertLeave * call InsertLeaveActions()

" to handle exiting insert mode via a control-C
inoremap <c-c> <c-o>:call InsertLeaveActions()<cr><c-c>

" default the statusline to green when entering Vim
hi statusline ctermfg=green

" have a permanent statusline to color
set laststatus=2