From 352ea072269dfe2a3c429785a95a2f22887ccda3 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 15 Feb 2023 23:20:18 +0900 Subject: [PATCH] 0.38.0 --- CHANGELOG.md | 6 +++++- install | 2 +- install.ps1 | 2 +- main.go | 2 +- man/man1/fzf-tmux.1 | 2 +- man/man1/fzf.1 | 2 +- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fb0d0e..48c2c96 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 3d8b3b3..fa2c0ec 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 c96bb8d..75ea820 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 07c764f..d204a13 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 ac422c1..43a21da 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 873e348..f2dbcfe 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