m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 15:53:39 -05:00

Code cleanup (#1640)

- Replaced time.Now().Sub() with time.Since()
- Replaced unnecessary string/byte slice conversions
- Removed obsolete return and value assignment in range loop
This commit is contained in:
Christian Muehlhaeuser
2019-07-19 06:22:35 +02:00
committed by Junegunn Choi
parent 7322504ad0
commit a1260feeed
6 changed files with 6 additions and 7 deletions

View File

@@ -547,7 +547,7 @@ func (r *LightRenderer) mouseSequence(sz *int) Event {
r.prevDownTime = now
} else {
if len(r.clickY) > 1 && r.clickY[0] == r.clickY[1] &&
time.Now().Sub(r.prevDownTime) < doubleClickDuration {
time.Since(r.prevDownTime) < doubleClickDuration {
double = true
}
}