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
a30999a7
Unverified
Commit
a30999a7
authored
8 years ago
by
Junegunn Choi
Browse files
Options
Downloads
Patches
Plain Diff
Prepare for 0.16.0 release
parent
1a50f1ec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
README.md
+4
-7
4 additions, 7 deletions
README.md
install
+7
-6
7 additions, 6 deletions
install
man/man1/fzf-tmux.1
+2
-2
2 additions, 2 deletions
man/man1/fzf-tmux.1
man/man1/fzf.1
+2
-2
2 additions, 2 deletions
man/man1/fzf.1
src/constants.go
+1
-1
1 addition, 1 deletion
src/constants.go
with
16 additions
and
18 deletions
README.md
+
4
−
7
View file @
a30999a7
...
...
@@ -496,12 +496,9 @@ valid directory. Example:
set
-l
FZF_CTRL_T_COMMAND
"command find -L
\$
dir -type f 2> /dev/null | sed '1d; s#^
\.
/##'"
```
License
-------
[
License
](LICENSE)
-------
-----------
[
MIT
](
LICENSE
)
The MIT License (MIT
)
Author
------
Junegunn Choi
Copyright (c) 2017 Junegunn Choi
This diff is collapsed.
Click to expand it.
install
+
7
−
6
View file @
a30999a7
...
...
@@ -2,9 +2,7 @@
set
-u
[[
"
$@
"
=
~
--pre
]]
&&
version
=
0.15.9
pre
=
1
||
version
=
0.15.9
pre
=
0
version
=
0.16.0-alpha
auto_completion
=
key_bindings
=
update_config
=
2
...
...
@@ -48,7 +46,7 @@ for opt in "$@"; do
--no-update-rc
)
update_config
=
0
;;
--32
)
binary_arch
=
386
;;
--64
)
binary_arch
=
amd64
;;
--bin
|
--pre
)
;;
--bin
)
;;
*
)
echo
"unknown option:
$opt
"
help
...
...
@@ -121,7 +119,7 @@ try_wget() {
download
()
{
echo
"Downloading bin/fzf ..."
if
[
$pre
=
0
]
;
then
if
[
[
!
"
$version
"
=
~ alpha
]
]
;
then
if
[
-x
"
$fzf_base
"
/bin/fzf
]
;
then
echo
" - Already exists"
check_binary
&&
return
...
...
@@ -137,7 +135,10 @@ download() {
return
fi
local
url
=
https://github.com/junegunn/fzf-bin/releases/download/
$version
/
${
1
}
.tgz
local
url
[[
"
$version
"
=
~ alpha
]]
&&
url
=
https://github.com/junegunn/fzf-bin/releases/download/alpha/
${
1
}
.tgz
||
url
=
https://github.com/junegunn/fzf-bin/releases/download/
$version
/
${
1
}
.tgz
set
-o
pipefail
if
!
(
try_curl
$url
||
try_wget
$url
)
;
then
set
+o pipefail
...
...
This diff is collapsed.
Click to expand it.
man/man1/fzf-tmux.1
+
2
−
2
View file @
a30999a7
.ig
The MIT License (MIT)
Copyright (c) 201
6
Junegunn Choi
Copyright (c) 201
7
Junegunn Choi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
...
...
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
..
.TH fzf-tmux 1 "
Nov
201
6
" "fzf 0.1
5.9
" "fzf-tmux - open fzf in tmux split pane"
.TH fzf-tmux 1 "
Jan
201
7
" "fzf 0.1
6.0
" "fzf-tmux - open fzf in tmux split pane"
.SH NAME
fzf-tmux - open fzf in tmux split pane
...
...
This diff is collapsed.
Click to expand it.
man/man1/fzf.1
+
2
−
2
View file @
a30999a7
.ig
The MIT License (MIT)
Copyright (c) 201
6
Junegunn Choi
Copyright (c) 201
7
Junegunn Choi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
...
...
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
..
.TH fzf 1 "
Nov
201
6
" "fzf 0.1
5.9
" "fzf - a command-line fuzzy finder"
.TH fzf 1 "
Jan
201
7
" "fzf 0.1
6.0
" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder
...
...
This diff is collapsed.
Click to expand it.
src/constants.go
+
1
−
1
View file @
a30999a7
...
...
@@ -8,7 +8,7 @@ import (
const
(
// Current version
version
=
"0.1
5.9
"
version
=
"0.1
6.0-alpha
"
// Core
coordinatorDelayMax
time
.
Duration
=
100
*
time
.
Millisecond
...
...
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