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は、既存の文字を入力されたテキストに置き換える挿入モードの一種です。 で行われる1文字の置換は、置換モード、また特別なモードでもありません。したがって、: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

関連情報