summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2018-06-10 10:35:52 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2018-06-10 10:35:52 +0900
commitf0fe79dd3bb4b782ad6040c970b4bfc818729f05 (patch)
tree1c69cea89069b37eb2985dc056ba76a44b25bc30
parentdaa1958f8602f91f6df6dac7a87c93da53aed5e4 (diff)
0.17.40.17.4
-rw-r--r--.github/ISSUE_TEMPLATE.md2
-rw-r--r--CHANGELOG.md20
-rwxr-xr-xinstall2
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
6 files changed, 25 insertions, 5 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index a0c85545..6f73fafe 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 61eac199..d4280c42 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 5fe2d8ff..e113bd1d 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 1bbd8687..709b9601 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 b113be41..a7462131 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 f3033840..b501a2aa 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