summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2020-04-03 17:33:29 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2020-04-03 17:33:29 +0900
commit334a4fa15920b08f7be2432398e620587cc6f079 (patch)
tree96a946559bdb55289839b8ab3cbb83f71c609e32
parent21f94ee800619d0c88fcd8bac32288fd8f831826 (diff)
0.21.10.21.1
-rw-r--r--CHANGELOG.md32
-rwxr-xr-xinstall2
-rw-r--r--install.ps12
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
6 files changed, 37 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7b4a35a5..f465c6c0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,38 @@
CHANGELOG
=========
+0.21.1
+------
+- Shell extension
+ - CTRL-R will remove duplicate commands
+- fzf-tmux
+ - Supports tmux popup window (require tmux 3.2 or above)
+ - ```sh
+ # 50% width and height
+ fzf-tmux -p
+
+ # 80% width and height
+ fzf-tmux -p 80%
+
+ # 80% width and 40% height
+ fzf-tmux -p 80%,40%
+ fzf-tmux -w 80% -h 40%
+
+ # Window position
+ fzf-tmux -w 80% -h 40% -x 0 -y 0
+ fzf-tmux -w 80% -h 40% -y 1000
+
+ # Write ordinary fzf options after --
+ fzf-tmux -p -- --reverse --info=inline --margin 2,4 --border
+ ```
+ - On macOS, you can build the latest tmux from the source with
+ `brew install tmux --HEAD`
+- Bug fixes
+ - Fixed Windows file traversal not to include directories
+ - Fixed ANSI colors with `--keep-right`
+ - Fixed _fzf_complete for zsh
+- Built with Go 1.14.1
+
0.21.0
------
- `--height` option is now available on Windows as well (@kelleyma49)
diff --git a/install b/install
index 2a79a913..207b3744 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
set -u
-version=0.21.0
+version=0.21.1
auto_completion=
key_bindings=
update_config=2
diff --git a/install.ps1 b/install.ps1
index 25e0dc6b..94bf3832 100644
--- a/install.ps1
+++ b/install.ps1
@@ -1,4 +1,4 @@
-$version="0.21.0"
+$version="0.21.1"
if ([Environment]::Is64BitProcess) {
$binary_arch="amd64"
diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1
index b559d793..525b8955 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 "Mar 2020" "fzf 0.21.0" "fzf-tmux - open fzf in tmux split pane"
+.TH fzf-tmux 1 "Apr 2020" "fzf 0.21.1" "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 cb8f51e7..3adf7f1b 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 "Mar 2020" "fzf 0.21.0" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Apr 2020" "fzf 0.21.1" "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 32314822..07f0a250 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -10,7 +10,7 @@ import (
const (
// Current version
- version = "0.21.0"
+ version = "0.21.1"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond