在 vim 中以替換模式重新映射鍵

在 vim 中以替換模式重新映射鍵

我正在嘗試交換分號和冒號鍵。

我用這個功能

func! FUNC_Remap(lhs, rhs)
    " Function which remaps keys in all modes
    "
    ":echom 'inoremap '.a:lhs.' '.a:rhs
    "http://vim.wikia.com/wiki/Mapping_keys_in_Vim_-_Tutorial_(Part_1)
    "  CHAR MODE    ~
    " <Space>   Normal, Visual, Select and Operator-pending
    "n  Normal
    "v  Visual and Select
    "s  Select
    "x  Visual
    "o  Operator-pending
    "!  Insert and Command-line
    "i  Insert
    "l  ":lmap" mappings for Insert, Command-line and Lang-Arg
    "c  Command-line
    "--------------
    " Normal Mode
    :exec 'noremap '.a:lhs.' '.a:rhs
    " Visual and Select Mode
    :exec 'vnoremap '.a:lhs.' '.a:rhs
    " Display select mode map
    :exec 'snoremap '.a:lhs.' '.a:rhs
    " Display visual mode maps
    :exec 'xnoremap '.a:lhs.' '.a:rhs
    " Operator Pending Mode
    :exec 'onoremap '.a:lhs.' '.a:rhs
    " Insert and Replace Mode
    :exec 'inoremap '.a:lhs.' '.a:rhs
    " Language Mode
    :exec 'lnoremap '.a:lhs.' '.a:rhs
    " Command Line Mode
    :exec 'cnoremap '.a:lhs.' '.a:rhs
endfu
command! -nargs=* CMDREMAP call FUNC_Remap(<f-args>)

func! FUNC_Swap(lhs, rhs)
    :call FUNC_Remap(a:lhs, a:rhs)
    :call FUNC_Remap(a:rhs, a:lhs)
endfu
command! -nargs=* CMDSWAP call FUNC_Swap(<f-args>)    

:CMDSWAP : ;

它適用於除替換模式之外的所有情況。

閱讀文檔,它說 inoremap 應該覆蓋替換模式,但是當我輸入 r;在正常模式下,我用分號替換當前字符,而不是它應該映射到的冒號。當映射在其他地方都有效時,這非常煩人。

如何讓按鍵重新映射以在替換模式下工作?

答案1

更換模式是插入模式的變體,它將現有字元替換為鍵入的文字。用完成的單字元替換r不是替換模式,也不是特殊模式;因此,這些:map命令在那裡不適用。一個不錯的技巧是重新映射整個命令+字元組合:

nnoremap r; r:
nnoremap r: r;

或者,您可以使用:lmap; cp。:help r:

      |:lmap| mappings apply to {char}.  The CTRL-^ command
      in Insert mode can be used to switch this on/off

相關內容