summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md32
1 files changed, 32 insertions, 0 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)