Fix cursor display in command mode

This commit is contained in:
Francesco Abbate 2021-04-02 11:05:26 +02:00
parent e44a408088
commit db8938413c
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ function DocView:draw_line_body(idx, x, y)
local lh = self:get_line_height()
local x1 = x + self:get_col_x_offset(line, col)
local caret_width
if core.vim_mode and self.editing_mode == 'command' then
if core.get_editing_mode(self) == 'command' then
caret_width = self:get_font():get_width(self.doc.lines[line1]:sub(col1, col1))
else
caret_width = style.caret_width