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
ee5aeb80
Unverified
Commit
ee5aeb80
authored
8 years ago
by
Junegunn Choi
Browse files
Options
Downloads
Patches
Plain Diff
0.16.4
parent
02ceae15
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
install
+3
-17
3 additions, 17 deletions
install
man/man1/fzf-tmux.1
+1
-1
1 addition, 1 deletion
man/man1/fzf-tmux.1
man/man1/fzf.1
+1
-1
1 addition, 1 deletion
man/man1/fzf.1
src/Makefile
+13
-13
13 additions, 13 deletions
src/Makefile
src/constants.go
+1
-1
1 addition, 1 deletion
src/constants.go
with
19 additions
and
33 deletions
install
+
3
−
17
View file @
ee5aeb80
...
...
@@ -2,7 +2,7 @@
set
-u
version
=
0.16.
3
version
=
0.16.
4
auto_completion
=
key_bindings
=
update_config
=
2
...
...
@@ -88,17 +88,6 @@ check_binary() {
return
1
}
symlink
()
{
echo
" - Creating symlink: bin/
$1
-> bin/fzf"
(
cd
"
$fzf_base
"
/bin
&&
rm
-f
fzf
&&
ln
-sf
$1
fzf
)
if
[
$?
-ne
0
]
;
then
binary_error
=
"Failed to create symlink"
return
1
fi
}
link_fzf_in_path
()
{
if
which_fzf
=
"
$(
command
-v
fzf
)
"
;
then
echo
" - Found in
\$
PATH"
...
...
@@ -124,9 +113,6 @@ download() {
echo
" - Already exists"
check_binary
&&
return
fi
if
[
-x
"
$fzf_base
"
/bin/
$1
]
;
then
symlink
$1
&&
check_binary
&&
return
fi
link_fzf_in_path
&&
return
fi
mkdir
-p
"
$fzf_base
"
/bin
&&
cd
"
$fzf_base
"
/bin
...
...
@@ -147,12 +133,12 @@ download() {
fi
set
+o pipefail
if
[
!
-f
$1
]
;
then
if
[
!
-f
fzf
]
;
then
binary_error
=
"Failed to download
${
1
}
"
return
fi
chmod
+x
$1
&&
symlink
$1
&&
check_binary
chmod
+x
fzf
&&
check_binary
}
# Try to download binary executable
...
...
This diff is collapsed.
Click to expand it.
man/man1/fzf-tmux.1
+
1
−
1
View file @
ee5aeb80
...
...
@@ -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 "
Jan
2017" "fzf 0.16.
3
" "fzf-tmux - open fzf in tmux split pane"
.TH fzf-tmux 1 "
Feb
2017" "fzf 0.16.
4
" "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
+
1
−
1
View file @
ee5aeb80
...
...
@@ -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 "
Jan
2017" "fzf 0.16.
3
" "fzf - a command-line fuzzy finder"
.TH fzf 1 "
Feb
2017" "fzf 0.16.
4
" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder
...
...
This diff is collapsed.
Click to expand it.
src/Makefile
+
13
−
13
View file @
ee5aeb80
...
...
@@ -52,23 +52,23 @@ all: fzf/$(BINARY)
ifeq
($(GOOS),windows)
release
:
fzf/$(BINARY32) fzf/$(BINARY64)
cd
fzf
&&
cp
$(
BINARY32
)
$(
RELEASE32
)
.exe
&&
zip
$(
RELEASE32
)
.zip
$(
RELEASE32
)
.exe
cd
fzf
&&
cp
$(
BINARY64
)
$(
RELEASE64
)
.exe
&&
zip
$(
RELEASE64
)
.zip
$(
RELEASE64
)
.exe
cd
fzf
&&
rm
-f
$(
RELEASE32
)
.exe
$(
RELEASE64
)
.exe
cd
fzf
&&
cp
-f
$(
BINARY32
)
fzf
.exe
&&
zip
$(
RELEASE32
)
.zip
fzf
.exe
cd
fzf
&&
cp
-f
$(
BINARY64
)
fzf
.exe
&&
zip
$(
RELEASE64
)
.zip
fzf
.exe
cd
fzf
&&
rm
-f
fzf
.exe
else
ifeq
($(GOOS),linux)
release
:
fzf/$(BINARY32) fzf/$(BINARY64) fzf/$(BINARYARM5) fzf/$(BINARYARM6) fzf/$(BINARYARM7) fzf/$(BINARYARM8)
cd
fzf
&&
cp
$(
BINARY32
)
$(
RELEASE32
)
&&
tar
-czf
$(
RELEASE32
)
.tgz
$(
RELEASE32
)
cd
fzf
&&
cp
$(
BINARY64
)
$(
RELEASE64
)
&&
tar
-czf
$(
RELEASE64
)
.tgz
$(
RELEASE64
)
cd
fzf
&&
cp
$(
BINARYARM5
)
$(
RELEASEARM5
)
&&
tar
-czf
$(
RELEASEARM5
)
.tgz
$(
RELEASEARM5
)
cd
fzf
&&
cp
$(
BINARYARM6
)
$(
RELEASEARM6
)
&&
tar
-czf
$(
RELEASEARM6
)
.tgz
$(
RELEASEARM6
)
cd
fzf
&&
cp
$(
BINARYARM7
)
$(
RELEASEARM7
)
&&
tar
-czf
$(
RELEASEARM7
)
.tgz
$(
RELEASEARM7
)
cd
fzf
&&
cp
$(
BINARYARM8
)
$(
RELEASEARM8
)
&&
tar
-czf
$(
RELEASEARM8
)
.tgz
$(
RELEASEARM8
)
cd
fzf
&&
rm
-f
$(
RELEASE32
)
$(
RELEASE64
)
$(
RELEASEARM5
)
$(
RELEASEARM6
)
$(
RELEASEARM7
)
$(
RELEASEARM8
)
cd
fzf
&&
cp
-f
$(
BINARY32
)
fzf
&&
tar
-czf
$(
RELEASE32
)
.tgz
fzf
cd
fzf
&&
cp
-f
$(
BINARY64
)
fzf
&&
tar
-czf
$(
RELEASE64
)
.tgz
fzf
cd
fzf
&&
cp
-f
$(
BINARYARM5
)
fzf
&&
tar
-czf
$(
RELEASEARM5
)
.tgz
fzf
cd
fzf
&&
cp
-f
$(
BINARYARM6
)
fzf
&&
tar
-czf
$(
RELEASEARM6
)
.tgz
fzf
cd
fzf
&&
cp
-f
$(
BINARYARM7
)
fzf
&&
tar
-czf
$(
RELEASEARM7
)
.tgz
fzf
cd
fzf
&&
cp
-f
$(
BINARYARM8
)
fzf
&&
tar
-czf
$(
RELEASEARM8
)
.tgz
fzf
cd
fzf
&&
rm
-f
fzf
else
release
:
fzf/$(BINARY32) fzf/$(BINARY64)
cd
fzf
&&
cp
$(
BINARY32
)
$(
RELEASE32
)
&&
tar
-czf
$(
RELEASE32
)
.tgz
$(
RELEASE32
)
cd
fzf
&&
cp
$(
BINARY64
)
$(
RELEASE64
)
&&
tar
-czf
$(
RELEASE64
)
.tgz
$(
RELEASE64
)
cd
fzf
&&
rm
-f
$(
RELEASE32
)
$(
RELEASE64
)
cd
fzf
&&
cp
-f
$(
BINARY32
)
fzf
&&
tar
-czf
$(
RELEASE32
)
.tgz
fzf
cd
fzf
&&
cp
-f
$(
BINARY64
)
fzf
&&
tar
-czf
$(
RELEASE64
)
.tgz
fzf
cd
fzf
&&
rm
-f
fzf
endif
release-all
:
clean test
...
...
This diff is collapsed.
Click to expand it.
src/constants.go
+
1
−
1
View file @
ee5aeb80
...
...
@@ -8,7 +8,7 @@ import (
const
(
// Current version
version
=
"0.16.
3
"
version
=
"0.16.
4
"
// 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