Skip to content
Snippets Groups Projects
Commit 65ae6cab authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Rename variables

parent 86a66da0
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,6 @@ class FZF
@mouse = true
@filter = nil
@pending = nil
@mutex = Mutex.new
argv =
if opts = ENV['FZF_DEFAULT_OPTS']
......@@ -130,6 +129,7 @@ class FZF
@source = source.clone
@mtx = Mutex.new
@rmtx = Mutex.new
@cv = ConditionVariable.new
@events = {}
@new = []
......@@ -722,7 +722,7 @@ class FZF
Thread.new do
begin
while blk = @queue.shift
@mutex.synchronize do
@rmtx.synchronize do
blk.call
refresh
end
......@@ -780,7 +780,7 @@ class FZF
end
def getch_nb
@mutex.synchronize { C.getch }
@rmtx.synchronize { C.getch }
end
def getch
......@@ -875,7 +875,7 @@ class FZF
case ch = getch
when C::KEY_MOUSE
if m = @mutex.synchronize { C.getmouse }
if m = C.getmouse
st = m.bstate
if test_mouse(st, C::BUTTON1_PRESSED, C::BUTTON1_RELEASED)
if m.y == cursor_y
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment