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',
|
||||
['niV'] = 'NORMAL',
|
||||
['v'] = 'VISUAL',
|
||||
['vs'] = 'VISUAL',
|
||||
['V'] = 'V-LINE',
|
||||
['Vs'] = 'V-LINE',
|
||||
[''] = 'V-BLOCK',
|
||||
['s'] = 'V-BLOCK',
|
||||
['s'] = 'SELECT',
|
||||
['S'] = 'S-LINE',
|
||||
[''] = 'S-BLOCK',
|
||||
['vs'] = 'VISUAL',
|
||||
['Vs'] = 'V-LINE',
|
||||
['s'] = 'V-BLOCK',
|
||||
['i'] = 'INSERT',
|
||||
['ic'] = 'INSERT',
|
||||
['ix'] = 'INSERT',
|
||||
['R'] = 'REPLACE',
|
||||
['Rc'] = 'REPLACE',
|
||||
['Rv'] = 'V-REPLACE',
|
||||
['Rx'] = 'REPLACE',
|
||||
['Rv'] = 'V-REPLACE',
|
||||
['Rvc'] = 'V-REPLACE',
|
||||
['Rvx'] = 'V-REPLACE',
|
||||
['c'] = 'COMMAND',
|
||||
['cv'] = 'EX',
|
||||
['ce'] = 'EX',
|
||||
|
|
Loading…
Reference in New Issue