mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-25 06:07:42 +00:00
0.17.4
This commit is contained in:
parent
daa1958f86
commit
f0fe79dd3b
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@ -22,7 +22,7 @@
|
|||||||
### Before submitting
|
### Before submitting
|
||||||
|
|
||||||
- Make sure that you have the latest version of fzf
|
- Make sure that you have the latest version of fzf
|
||||||
- If you use tmux, make sure $TERM is set to screen or screen-256color
|
- If you use tmux, make sure $TERM starts with "screen"
|
||||||
- For more Vim stuff, check out https://github.com/junegunn/fzf.vim
|
- For more Vim stuff, check out https://github.com/junegunn/fzf.vim
|
||||||
|
|
||||||
Describe your problem or suggestion from here ...
|
Describe your problem or suggestion from here ...
|
||||||
|
20
CHANGELOG.md
20
CHANGELOG.md
@ -1,6 +1,26 @@
|
|||||||
CHANGELOG
|
CHANGELOG
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.17.4
|
||||||
|
------
|
||||||
|
|
||||||
|
- Added `--layout` option with a new layout called `reverse-list`.
|
||||||
|
- `--layout=reverse` is a synonym for `--reverse`
|
||||||
|
- `--layout=default` is a synonym for `--no-reverse`
|
||||||
|
- Preview window will be updated even when there is no match for the query
|
||||||
|
if any of the placeholder expressions (e.g. `{q}`, `{+}`) evaluates to
|
||||||
|
a non-empty string.
|
||||||
|
- More keys for binding: `shift-{up,down}`, `alt-{up,down,left,right}`
|
||||||
|
- fzf can now start even when `/dev/tty` is not available by making an
|
||||||
|
educated guess.
|
||||||
|
- Updated the default command for Windows.
|
||||||
|
- Fixes and improvements on bash/zsh completion
|
||||||
|
- install and uninstall scripts now supports generating files under
|
||||||
|
`XDG_CONFIG_HOME` on `--xdg` flag.
|
||||||
|
|
||||||
|
See https://github.com/junegunn/fzf/milestone/12?closed=1 for the full list of
|
||||||
|
changes.
|
||||||
|
|
||||||
0.17.3
|
0.17.3
|
||||||
------
|
------
|
||||||
- `$LINES` and `$COLUMNS` are exported to preview command so that the command
|
- `$LINES` and `$COLUMNS` are exported to preview command so that the command
|
||||||
|
2
install
2
install
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
version=0.17.3
|
version=0.17.4
|
||||||
auto_completion=
|
auto_completion=
|
||||||
key_bindings=
|
key_bindings=
|
||||||
update_config=2
|
update_config=2
|
||||||
|
@ -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
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
..
|
..
|
||||||
.TH fzf-tmux 1 "Dec 2017" "fzf 0.17.3" "fzf-tmux - open fzf in tmux split pane"
|
.TH fzf-tmux 1 "Jun 2018" "fzf 0.17.4" "fzf-tmux - open fzf in tmux split pane"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
fzf-tmux - open fzf in tmux split pane
|
fzf-tmux - open fzf in tmux split pane
|
||||||
|
@ -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
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
..
|
..
|
||||||
.TH fzf 1 "Apr 2018" "fzf 0.17.4-devel" "fzf - a command-line fuzzy finder"
|
.TH fzf 1 "Jun 2018" "fzf 0.17.4" "fzf - a command-line fuzzy finder"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
fzf - a command-line fuzzy finder
|
fzf - a command-line fuzzy finder
|
||||||
|
@ -9,7 +9,7 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// Current version
|
// Current version
|
||||||
version = "0.17.3"
|
version = "0.17.4"
|
||||||
|
|
||||||
// Core
|
// Core
|
||||||
coordinatorDelayMax time.Duration = 100 * time.Millisecond
|
coordinatorDelayMax time.Duration = 100 * time.Millisecond
|
||||||
|
Loading…
Reference in New Issue
Block a user