feat: add support for modes Rvc and Rvx (#75)

Following https://github.com/neovim/neovim/pull/15886
This commit is contained in:
zeertzjq 2021-10-04 09:36:20 +08:00 committed by GitHub
parent b7c0a2aeb1
commit 90e1dc074f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -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',