mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-04-05 16:51:50 +00:00
Fix nil string error
This commit is contained in:
parent
856dad4ac8
commit
97b3f33919
4
fzf
4
fzf
@ -167,7 +167,7 @@ def cursor_y; C.lines - 1; end
|
|||||||
def cprint str, col
|
def cprint str, col
|
||||||
C.attron(col) do
|
C.attron(col) do
|
||||||
C.addstr str
|
C.addstr str
|
||||||
end
|
end if str
|
||||||
end
|
end
|
||||||
|
|
||||||
def print_input
|
def print_input
|
||||||
@ -443,7 +443,7 @@ searcher = Thread.new {
|
|||||||
C.addstr line[0, b]
|
C.addstr line[0, b]
|
||||||
cprint line[b...e], color(chosen ? :match! : :match, chosen)
|
cprint line[b...e], color(chosen ? :match! : :match, chosen)
|
||||||
C.attron basic
|
C.attron basic
|
||||||
C.addstr line[e..-1]
|
C.addstr line[e..-1] || ''
|
||||||
else
|
else
|
||||||
C.addstr line
|
C.addstr line
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user