feat: add support for modes Rvc and Rvx (#75)
Following https://github.com/neovim/neovim/pull/15886
This commit is contained in:
parent
b7c0a2aeb1
commit
90e1dc074f
|
@ -12,21 +12,23 @@ Mode.map = {
|
||||||
['niR'] = 'NORMAL',
|
['niR'] = 'NORMAL',
|
||||||
['niV'] = 'NORMAL',
|
['niV'] = 'NORMAL',
|
||||||
['v'] = 'VISUAL',
|
['v'] = 'VISUAL',
|
||||||
|
['vs'] = 'VISUAL',
|
||||||
['V'] = 'V-LINE',
|
['V'] = 'V-LINE',
|
||||||
|
['Vs'] = 'V-LINE',
|
||||||
[''] = 'V-BLOCK',
|
[''] = 'V-BLOCK',
|
||||||
|
['s'] = 'V-BLOCK',
|
||||||
['s'] = 'SELECT',
|
['s'] = 'SELECT',
|
||||||
['S'] = 'S-LINE',
|
['S'] = 'S-LINE',
|
||||||
[''] = 'S-BLOCK',
|
[''] = 'S-BLOCK',
|
||||||
['vs'] = 'VISUAL',
|
|
||||||
['Vs'] = 'V-LINE',
|
|
||||||
['s'] = 'V-BLOCK',
|
|
||||||
['i'] = 'INSERT',
|
['i'] = 'INSERT',
|
||||||
['ic'] = 'INSERT',
|
['ic'] = 'INSERT',
|
||||||
['ix'] = 'INSERT',
|
['ix'] = 'INSERT',
|
||||||
['R'] = 'REPLACE',
|
['R'] = 'REPLACE',
|
||||||
['Rc'] = 'REPLACE',
|
['Rc'] = 'REPLACE',
|
||||||
['Rv'] = 'V-REPLACE',
|
|
||||||
['Rx'] = 'REPLACE',
|
['Rx'] = 'REPLACE',
|
||||||
|
['Rv'] = 'V-REPLACE',
|
||||||
|
['Rvc'] = 'V-REPLACE',
|
||||||
|
['Rvx'] = 'V-REPLACE',
|
||||||
['c'] = 'COMMAND',
|
['c'] = 'COMMAND',
|
||||||
['cv'] = 'EX',
|
['cv'] = 'EX',
|
||||||
['ce'] = 'EX',
|
['ce'] = 'EX',
|
||||||
|
|
Loading…
Reference in New Issue