summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2023-02-15 23:20:18 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2023-02-15 23:24:42 +0900
commit352ea072269dfe2a3c429785a95a2f22887ccda3 (patch)
treee538f8213e3c8f70568af51332f5de78e279c810
parent27018787afb398f362c6e15bcfe7a8a149c82f76 (diff)
0.38.00.38.0
-rw-r--r--CHANGELOG.md6
-rwxr-xr-xinstall2
-rw-r--r--install.ps12
-rw-r--r--main.go2
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
6 files changed, 10 insertions, 6 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})'
diff --git a/install b/install
index 3d8b3b37..fa2c0ecb 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
set -u
-version=0.37.0
+version=0.38.0
auto_completion=
key_bindings=
update_config=2
diff --git a/install.ps1 b/install.ps1
index c96bb8d8..75ea8201 100644
--- a/install.ps1
+++ b/install.ps1
@@ -1,4 +1,4 @@
-$version="0.37.0"
+$version="0.38.0"
$fzf_base=Split-Path -Parent $MyInvocation.MyCommand.Definition
diff --git a/main.go b/main.go
index 07c764f1..d204a13c 100644
--- a/main.go
+++ b/main.go
@@ -5,7 +5,7 @@ import (
"github.com/junegunn/fzf/src/protector"
)
-var version string = "0.37"
+var version string = "0.38"
var revision string = "devel"
func main() {
diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1
index ac422c1c..43a21da9 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 "Jan 2023" "fzf 0.37.0" "fzf-tmux - open fzf in tmux split pane"
+.TH fzf-tmux 1 "Feb 2023" "fzf 0.38.0" "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 873e3485..f2dbcfe7 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 "Jan 2023" "fzf 0.37.0" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Feb 2023" "fzf 0.38.0" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder