Skip to content

0.38.0

Compare
Choose a tag to compare
@junegunn junegunn released this 15 Feb 14:27
· 626 commits to master since this release
0.38.0
352ea07
  • 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 for more information.
      # 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})'
      • This action is not supported on Windows
    • show-preview
    • hide-preview
  • Bug fixes
    • --preview-window 0,hidden should not execute the preview command until toggle-preview action is triggered