summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7fb0d0e0..48c2c966 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,8 +6,12 @@ CHANGELOG
- New actions
- `become(...)` - Replace the current fzf process with the specified
command using `execve(2)` system call.
- See https://github.com/junegunn/fzf#turning-into-a-different-process.
+ See https://github.com/junegunn/fzf#turning-into-a-different-process for
+ more information.
```sh
+ # Open selected files in Vim
+ fzf --multi --bind 'enter:become(vim {+})'
+
# Open the file in Vim and go to the line
git grep --line-number . |
fzf --delimiter : --nth 3.. --bind 'enter:become(vim {1} +{2})'