Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fzf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
fzf
Commits
c7e86ad4
Commit
c7e86ad4
authored
11 years ago
by
Junegunn Choi
Browse files
Options
Downloads
Patches
Plain Diff
Add --no-mouse option to replace FZF_MOUSE_ENABLED
parent
f2b2c022
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
fzf
+7
-5
7 additions, 5 deletions
fzf
test/test_fzf.rb
+6
-2
6 additions, 2 deletions
test/test_fzf.rb
with
14 additions
and
8 deletions
README.md
+
1
−
1
View file @
c7e86ad4
...
...
@@ -60,11 +60,11 @@ usage: fzf [options]
-i Case-insensitive match (default: smart-case match)
+i Case-sensitive match
+c, --no-color Disable colors
--no-mouse Disable mouse
Environment variables
FZF_DEFAULT_COMMAND Default command to use when input is tty
FZF_DEFAULT_OPTS Defaults options. (e.g. "-x -m --sort 10000")
FZF_MOUSE_ENABLED Set to 0 to disable mouse
```
fzf will launch curses-based finder, read the list from STDIN, and write the
...
...
This diff is collapsed.
Click to expand it.
fzf
+
7
−
5
View file @
c7e86ad4
...
...
@@ -7,7 +7,7 @@
# / __/ / /_/ __/
# /_/ /___/_/ Fuzzy finder for your shell
#
# Version: 0.7.0
-devel
(January 30, 2014)
# Version: 0.7.0 (January 30, 2014)
#
# Author: Junegunn Choi
# URL: https://github.com/junegunn/fzf
...
...
@@ -50,7 +50,7 @@ end
class
FZF
C
=
Curses
attr_reader
:rxflag
,
:sort
,
:color
,
:multi
,
:query
,
:extended
attr_reader
:rxflag
,
:sort
,
:color
,
:mouse
,
:multi
,
:query
,
:extended
class
AtomicVar
def
initialize
value
...
...
@@ -81,6 +81,7 @@ class FZF
@color
=
true
@multi
=
false
@extended
=
false
@mouse
=
true
argv
=
if
opts
=
ENV
[
'FZF_DEFAULT_OPTS'
]
...
...
@@ -101,6 +102,7 @@ class FZF
when
'+i'
then
@rxflag
=
0
when
'-c'
,
'--color'
then
@color
=
true
when
'+c'
,
'--no-color'
then
@color
=
false
when
'--no-mouse'
then
@mouse
=
false
when
'+s'
,
'--no-sort'
then
@sort
=
nil
when
'-q'
,
'--query'
usage
1
,
'query string required'
unless
query
=
argv
.
shift
...
...
@@ -171,11 +173,11 @@ class FZF
-i Case-insensitive match (default: smart-case match)
+i Case-sensitive match
+c, --no-color Disable colors
--no-mouse Disable mouse
Environment variables
FZF_DEFAULT_COMMAND Default command to use when input is tty
FZF_DEFAULT_OPTS Defaults options. (e.g. "-x -m --sort 10000")
FZF_MOUSE_ENABLED Set to 0 to disable mouse]
+
$/
+
$/
FZF_DEFAULT_OPTS Defaults options. (e.g. "-x -m --sort 10000")]
+
$/
+
$/
exit
x
end
...
...
@@ -472,7 +474,7 @@ class FZF
def
init_screen
C
.
init_screen
unless
ENV
.
fetch
(
'FZF_MOUSE_ENABLED'
,
'1'
)
==
'0'
if
@mouse
C
.
mouseinterval
0
C
.
mousemask
C
::
ALL_MOUSE_EVENTS
end
...
...
This diff is collapsed.
Click to expand it.
test/test_fzf.rb
+
6
−
2
View file @
c7e86ad4
...
...
@@ -20,6 +20,7 @@ class TestFZF < MiniTest::Unit::TestCase
assert_equal
false
,
fzf
.
multi
assert_equal
true
,
fzf
.
color
assert_equal
nil
,
fzf
.
rxflag
assert_equal
true
,
fzf
.
mouse
end
def
test_environment_variables
...
...
@@ -28,7 +29,7 @@ class TestFZF < MiniTest::Unit::TestCase
fzf
=
FZF
.
new
[]
assert_equal
20000
,
fzf
.
sort
ENV
[
'FZF_DEFAULT_OPTS'
]
=
'-x -m -s 10000 -q " hello world " +c'
ENV
[
'FZF_DEFAULT_OPTS'
]
=
'-x -m -s 10000 -q " hello world " +c
--no-mouse
'
fzf
=
FZF
.
new
[]
assert_equal
10000
,
fzf
.
sort
assert_equal
' hello world '
,
...
...
@@ -36,14 +37,16 @@ class TestFZF < MiniTest::Unit::TestCase
assert_equal
true
,
fzf
.
extended
assert_equal
true
,
fzf
.
multi
assert_equal
false
,
fzf
.
color
assert_equal
false
,
fzf
.
mouse
end
def
test_option_parser
# Long opts
fzf
=
FZF
.
new
%w[--sort=2000 --no-color --multi +i --query hello --extended]
fzf
=
FZF
.
new
%w[--sort=2000 --no-color --multi +i --query hello --extended
--no-mouse
]
assert_equal
2000
,
fzf
.
sort
assert_equal
true
,
fzf
.
multi
assert_equal
false
,
fzf
.
color
assert_equal
false
,
fzf
.
mouse
assert_equal
0
,
fzf
.
rxflag
assert_equal
'hello'
,
fzf
.
query
.
get
assert_equal
true
,
fzf
.
extended
...
...
@@ -53,6 +56,7 @@ class TestFZF < MiniTest::Unit::TestCase
assert_equal
nil
,
fzf
.
sort
assert_equal
false
,
fzf
.
multi
assert_equal
true
,
fzf
.
color
assert_equal
true
,
fzf
.
mouse
assert_equal
1
,
fzf
.
rxflag
assert_equal
'hello'
,
fzf
.
query
.
get
assert_equal
false
,
fzf
.
extended
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment