Update CHANGELOG

pull/1758/head
Junegunn Choi 5 years ago
parent 9a41fd5327
commit 7238c8944d
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -4,6 +4,8 @@ CHANGELOG
0.19.0
------
- Added `--phony` option which completely disables search functionality.
Useful when you want to use fzf only as a selector interface. See below.
- Added "reload" action for dynamically updating the input list without
restarting fzf. See https://github.com/junegunn/fzf/issues/1750 to learn
more about it.
@ -11,7 +13,7 @@ CHANGELOG
# Using fzf as the selector interface for ripgrep
RG_PREFIX="rg --column --line-number --no-heading --color=always --smart-case "
INITIAL_QUERY="foo"
FZF_DEFAULT_COMMAND="$RG_PREFIX '$INITIAL_QUERY'" \
FZF_DEFAULT_COMMAND="$RG_PREFIX '$INITIAL_QUERY' || true" \
fzf --bind "change:reload:$RG_PREFIX {q} || true" \
--ansi --phony --query "$INITIAL_QUERY"
```

Loading…
Cancel
Save