summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c606bf26..b9683721 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,10 +6,21 @@ CHANGELOG
- More border options for `--preview-window`
```sh
fzf --preview 'cat {}' --preview-window border-left
+ fzf --preview 'cat {}' --preview-window border-left --border horizontal
fzf --preview 'cat {}' --preview-window top:border-bottom
fzf --preview 'cat {}' --preview-window top:border-horizontal
```
-- Signed and notarized macOS binaries (thanks to [BACKERS.md](https://github.com/junegunn/junegunn/blob/main/BACKERS.md))
+- Automatically set `/dev/tty` as STDIN on execute action
+ ```sh
+ # Redirect /dev/tty to suppress "Vim: Warning: Input is not from a terminal"
+ # ls | fzf --bind "enter:execute(vim {} < /dev/tty)"
+
+ # "< /dev/tty" part is no longer needed
+ ls | fzf --bind "enter:execute(vim {})"
+ ```
+- Bug fixes and improvements
+- Signed and notarized macOS binaries
+ (Huge thanks to [BACKERS.md](https://github.com/junegunn/junegunn/blob/main/BACKERS.md)!)
0.26.0
------