Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/view/input/userInputView.lua
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ function UserInputView:render_input(input, status, time)
color = Color[ci] or colors.fg
end
end
if perr and ln > el or
(ln == el and (c > ec or ec == 1)) then
if el and ln > el or
(ln == el and (ec and c > ec or ec == 1)) then
color = cf_colors.input.error
end
local selected = (function()
Expand Down
Loading