added select mode

This commit is contained in:
hoob3rt 2021-01-06 14:52:05 +01:00
parent 4cf4ac814d
commit 84b554f3bf
2 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,7 @@ local function mode()
['Rv'] = 'V-REPLACE',
['c'] = 'COMMAND',
['t'] = 'TERMINAL',
['s'] = 'SELECT',
}
return mode_map[vim.fn.mode()]
end

View File

@ -48,6 +48,8 @@ function M.format_highlight(is_focused, highlight_group)
highlight_group = highlight_group .. '_visual'
elseif mode == 'V-REPLACE' then
highlight_group = highlight_group .. '_replace'
elseif mode == 'SELECT' then
highlight_group = highlight_group .. '_terminal'
else
highlight_group = highlight_group .. '_' .. mode:lower()
end