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',
['i'] = 'INSERT',
['ic'] = 'INSERT',
['ix'] = 'INSERT',
['v'] = 'VISUAL',
['V'] = 'V-LINE',
[''] = 'V-BLOCK',
['R'] = 'REPLACE',
['r'] = 'REPLACE',
['rc'] = 'REPLACE',
['rx'] = 'REPLACE',
['Rv'] = 'V-REPLACE',
['c'] = 'COMMAND',
['t'] = 'TERMINAL',