mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-22 04:45:14 +00:00
Add 'reading' marker
This commit is contained in:
parent
0c438111e0
commit
2bf54a0a57
20
fzf
20
fzf
@ -57,15 +57,16 @@ C = Curses
|
|||||||
@cursor_x = 0
|
@cursor_x = 0
|
||||||
@vcursor = 0
|
@vcursor = 0
|
||||||
@matches = []
|
@matches = []
|
||||||
|
@fan = '-\|/-\|/'.split(//)
|
||||||
@stat = OpenStruct.new(:hit => 0, :partial_hit => 0,
|
@stat = OpenStruct.new(:hit => 0, :partial_hit => 0,
|
||||||
:prefix_hit => 0, :search => 0)
|
:prefix_hit => 0, :search => 0)
|
||||||
|
|
||||||
def max_items; C.lines - 2; end
|
def max_items; C.lines - 2; end
|
||||||
def cursor_y; C.lines - 1; end
|
def cursor_y; C.lines - 1; end
|
||||||
def cprint str, col
|
def cprint str, col, flag = C::A_BOLD
|
||||||
C.attron C.color_pair(col) | C::A_BOLD
|
C.attron C.color_pair(col) | flag
|
||||||
C.addstr str
|
C.addstr str
|
||||||
C.attroff C.color_pair(col) | C::A_BOLD
|
C.attroff C.color_pair(col) | flag
|
||||||
end
|
end
|
||||||
|
|
||||||
def print_input
|
def print_input
|
||||||
@ -78,7 +79,16 @@ end
|
|||||||
def print_info msg = nil
|
def print_info msg = nil
|
||||||
C.setpos cursor_y - 1, 0
|
C.setpos cursor_y - 1, 0
|
||||||
C.clrtoeol
|
C.clrtoeol
|
||||||
C.addstr " #{@matches.length}/#{@count}#{msg}"
|
prefix =
|
||||||
|
if fan = @fan.shift
|
||||||
|
@fan.push fan
|
||||||
|
cprint fan, 5, 0
|
||||||
|
' '
|
||||||
|
else
|
||||||
|
' '
|
||||||
|
end
|
||||||
|
C.addstr "#{prefix}#{@matches.length}/#{@count}"
|
||||||
|
C.addstr msg if msg
|
||||||
end
|
end
|
||||||
|
|
||||||
def refresh
|
def refresh
|
||||||
@ -121,6 +131,7 @@ C.init_pair 1, C::COLOR_BLUE, C::COLOR_BLACK
|
|||||||
C.init_pair 2, C::COLOR_WHITE, C::COLOR_BLACK
|
C.init_pair 2, C::COLOR_WHITE, C::COLOR_BLACK
|
||||||
C.init_pair 3, C::COLOR_YELLOW, C::COLOR_BLACK
|
C.init_pair 3, C::COLOR_YELLOW, C::COLOR_BLACK
|
||||||
C.init_pair 4, C::COLOR_RED, C::COLOR_BLACK
|
C.init_pair 4, C::COLOR_RED, C::COLOR_BLACK
|
||||||
|
C.init_pair 5, C::COLOR_CYAN, C::COLOR_BLACK
|
||||||
|
|
||||||
@read =
|
@read =
|
||||||
if $stdin.tty?
|
if $stdin.tty?
|
||||||
@ -140,6 +151,7 @@ reader = Thread.new {
|
|||||||
@cv.broadcast
|
@cv.broadcast
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@smtx.synchronize { @fan = [] }
|
||||||
}
|
}
|
||||||
|
|
||||||
searcher = Thread.new {
|
searcher = Thread.new {
|
||||||
|
Loading…
Reference in New Issue
Block a user