This project is mirrored from https://github.com/junegunn/fzf.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Apr 17, 2020
-
-
Junegunn Choi authored
Close #1986
-
- Apr 12, 2020
-
-
Junegunn Choi authored
Fix #1973 Fix #1974 Fix #1975
-
Jack Bates authored
Co-authored-by:
Junegunn Choi <junegunn.c@gmail.com>
-
- Apr 07, 2020
-
-
Junegunn Choi authored
Since we don't know in advance which flags tmux will support, simply allow a single uppercase character ([A-Z]) for now. fzf-tmux -xR -yS fzf-tmux -x R -y S Fix #1956
-
- Apr 05, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
e.g. if exists('$TMUX') let g:fzf_layout = { 'tmux': '-p90%,60%' } else let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } } endif
-
- Apr 03, 2020
-
-
Junegunn Choi authored
The following code works in zsh 5.8 but not in 5.4 ${(Q)${(Z+n+)FZF_TMUX_OPTS:--d${FZF_TMUX_HEIGHT:-40%}}}
-
Junegunn Choi authored
-
Junegunn Choi authored
Related: https://github.com/tmux/tmux/issues/1282
-
Junegunn Choi authored
-
Junegunn Choi authored
Requires latest tmux built from source (e.g. brew install tmux --HEAD) Examples: # 50%/50% width and height on the center of the screen fzf-tmux -p # 80%/80% fzf-tmux -p80% # 80%/40% fzf-tmux -p80%,40% # Separate -w and -h fzf-tmux -w80% -h40% # 80%/40% at position (0, 0) fzf-tmux -w80% -h40% -x0 -y0 You can configure key bindings and fuzzy completion to open in tmux popup window like so: FZF_TMUX_OPTS='-p 80%'
- Mar 30, 2020
-
-
lacygoill authored
Invoking fzf from an existing Vim popup terminal is a special case. It requires some new code to avoid E994 from being raised and the user being stuck in a non-closable popup window. Fix #1916
-
Roman Perepelitsa authored
At the top of each zsh file options are set to their standard values (those marked with <Z> in `man zshoptions`) and `aliases` option is disabled. At the bottom of the file the original options are restored. Fix #1938
-
Alexandr authored
-
- Mar 29, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #1940 Related: #1363 #749 #270 #49 #88 #492 #600
-
- Mar 24, 2020
-
-
Chitoku authored
-
- Mar 23, 2020
-
-
Junegunn Choi authored
-
- Mar 14, 2020
-
-
Junegunn Choi authored
Fix #1926
-
- Mar 13, 2020
-
- Mar 12, 2020
-
- Mar 11, 2020
-
-
Junegunn Choi authored
Close #1652
-
Junegunn Choi authored
-
Jakub Łuczyński authored
-
Junegunn Choi authored
To make it easier to write more complex fzf options. Although this does not break backward compatibility, users are encouraged to update their code accordingly. # Before _fzf_complete "FZF_ARG1 FZF_ARG2..." "$@" < <( # Print candidates ) # After _fzf_complete FZF_ARG1 FZF_ARG2... -- "$@" < <( # Print candidates )
-
Kahlil (Kal) Hodgson authored
Co-authored-by:
Junegunn Choi <junegunn.c@gmail.com>
-
- Mar 09, 2020
-
-
Michael Kelley authored
Separate Unix & Windows code into platform specific files for light renderer
-
- Mar 07, 2020
-
-
Junegunn Choi authored
- https://travis-ci.org/junegunn/fzf/jobs/659496745#L676 Related #1900
-
Junegunn Choi authored
This change allows the completion system of bash and zsh to return before the input process completes. Related #1887
-
Junegunn Choi authored
This might help with #1456 where fzf hangs consuming CPU resources.
-
- Mar 05, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
--border option now takes an optional argument that defines the style - rounded (new default) - sharp - horizontal (previous default)
-
- Mar 04, 2020
-
-
Junegunn Choi authored
Make sure that the shell is ready before hitting CTRL-R 1) Error: TestFish#test_ctrl_r_multiline: RuntimeError: timeout test/test_go.rb:50:in `wait' test/test_go.rb:125:in `until' test/test_go.rb:1857:in `test_ctrl_r_multiline'
-
- Mar 03, 2020
-
-
Junegunn Choi authored
Fix #1418 e.g. call fzf#run({'source': [1, 2, 3], 'down': '~50%', 'options': "--border --header $'1\n2'"})
-
Junegunn Choi authored
- OSC Ps ; Pt BEL - OSC Ps ; Pt ST Fix #1415
-
- Mar 01, 2020
-
-
Junegunn Choi authored
- Prefix matcher will trim leading whitespaces only when the pattern doesn't start with a whitespace - Suffix matcher will trim trailing whitespaces only when the pattern doesn't end with a whitespace - Equal matcher will trim leading whitespaces only when the pattern doesn't start with a whitespace, and trim trailing whitespaces only when the pattern doesn't end with a whitespace Previously, only suffix matcher would trim whitespaces unconditionally. Fix #1894
- Feb 29, 2020
-
-
Junegunn Choi authored
Fix #1898
-
- Feb 28, 2020
-
-
Jack Bates authored
-