From f0fe79dd3bb4b782ad6040c970b4bfc818729f05 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 10 Jun 2018 10:35:52 +0900 Subject: [PATCH] 0.17.4 --- .github/ISSUE_TEMPLATE.md | 2 +- CHANGELOG.md | 20 ++++++++++++++++++++ install | 2 +- man/man1/fzf-tmux.1 | 2 +- man/man1/fzf.1 | 2 +- src/constants.go | 2 +- 6 files changed, 25 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index a0c8554..6f73faf 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -22,7 +22,7 @@ ### Before submitting - 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 Describe your problem or suggestion from here ... diff --git a/CHANGELOG.md b/CHANGELOG.md index 61eac19..d4280c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ 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 ------ - `$LINES` and `$COLUMNS` are exported to preview command so that the command diff --git a/install b/install index 5fe2d8f..e113bd1 100755 --- a/install +++ b/install @@ -2,7 +2,7 @@ set -u -version=0.17.3 +version=0.17.4 auto_completion= key_bindings= update_config=2 diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1 index 1bbd868..709b960 100644 --- a/man/man1/fzf-tmux.1 +++ b/man/man1/fzf-tmux.1 @@ -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 "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 fzf-tmux - open fzf in tmux split pane diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index b113be4..a746213 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -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 "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 fzf - a command-line fuzzy finder diff --git a/src/constants.go b/src/constants.go index f303384..b501a2a 100644 --- a/src/constants.go +++ b/src/constants.go @@ -9,7 +9,7 @@ import ( const ( // Current version - version = "0.17.3" + version = "0.17.4" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond