summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-12-03 23:55:24 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-12-03 23:55:24 +0900
commit390b49653b441c958b82a0f78d9923aef4c1d9a2 (patch)
tree66df46016f13b77307f8198f1d20a29dc7444ce2
parentb877c385f01bf04e7c6449d799880ce9d6191d44 (diff)
0.17.30.17.3
-rw-r--r--CHANGELOG.md18
-rwxr-xr-xinstall2
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
5 files changed, 22 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1c167728..61eac199 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,24 @@
CHANGELOG
=========
+0.17.3
+------
+- `$LINES` and `$COLUMNS` are exported to preview command so that the command
+ knows the exact size of the preview window.
+- Better error messages when the default command or `$FZF_DEFAULT_COMMAND`
+ fails.
+- Reverted #1061 to avoid having duplicate entries in the list when find
+ command detected a file system loop (#1120). The default command now
+ requires that find supports `-fstype` option.
+- fzf now distinguishes mouse left click and right click (#1130)
+ - Right click is now bound to `toggle` action by default
+ - `--bind` understands `left-click` and `right-click`
+- Added `replace-query` action (#1137)
+ - Replaces query string with the current selection
+- Added `accept-non-empty` action (#1162)
+ - Same as accept, except that it prevents fzf from exiting without any
+ selection
+
0.17.1
------
diff --git a/install b/install
index d3e21e11..cf6678f1 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
set -u
-version=0.17.1
+version=0.17.3
auto_completion=
key_bindings=
update_config=2
diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1
index 8de9f696..1bbd8687 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 "Oct 2017" "fzf 0.17.1" "fzf-tmux - open fzf in tmux split pane"
+.TH fzf-tmux 1 "Dec 2017" "fzf 0.17.3" "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 60012501..e39d0b90 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 "Oct 2017" "fzf 0.17.1" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Dec 2017" "fzf 0.17.3" "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 8eddce9f..0629d054 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -9,7 +9,7 @@ import (
const (
// Current version
- version = "0.17.1"
+ version = "0.17.3"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond