fix vi nomode issue
This commit is contained in:
parent
afcacf1726
commit
bdcf708d77
|
@ -137,7 +137,11 @@ gls.right[4] = {
|
|||
v = "Visual",
|
||||
R = "Replace"
|
||||
}
|
||||
return " " .. alias[vim.fn.mode()] .. " "
|
||||
local current_Mode = alias[vim.fn.mode()]
|
||||
|
||||
if current_Mode ~= nil then
|
||||
return " " .. current_Mode .. " "
|
||||
end
|
||||
end,
|
||||
highlight = {colors.red, colors.lightbg}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue