Added Completion Mode Label (#56)

This commit is contained in:
Liam Jarvis 2021-01-10 02:27:53 +09:00 committed by GitHub
parent 72e5c71ebd
commit 8742b6e466
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -3,11 +3,15 @@ local function mode()
['__'] = '------', ['__'] = '------',
['n'] = 'NORMAL', ['n'] = 'NORMAL',
['i'] = 'INSERT', ['i'] = 'INSERT',
['ic'] = 'INSERT',
['ix'] = 'INSERT',
['v'] = 'VISUAL', ['v'] = 'VISUAL',
['V'] = 'V-LINE', ['V'] = 'V-LINE',
[''] = 'V-BLOCK', [''] = 'V-BLOCK',
['R'] = 'REPLACE', ['R'] = 'REPLACE',
['r'] = 'REPLACE', ['r'] = 'REPLACE',
['rc'] = 'REPLACE',
['rx'] = 'REPLACE',
['Rv'] = 'V-REPLACE', ['Rv'] = 'V-REPLACE',
['c'] = 'COMMAND', ['c'] = 'COMMAND',
['t'] = 'TERMINAL', ['t'] = 'TERMINAL',