added select mode
This commit is contained in:
parent
4cf4ac814d
commit
84b554f3bf
|
@ -11,6 +11,7 @@ local function mode()
|
|||
['Rv'] = 'V-REPLACE',
|
||||
['c'] = 'COMMAND',
|
||||
['t'] = 'TERMINAL',
|
||||
['s'] = 'SELECT',
|
||||
}
|
||||
return mode_map[vim.fn.mode()]
|
||||
end
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue