Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/junegunn/fzf. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Feb 23, 2020
  2. Feb 21, 2020
  3. Feb 20, 2020
  4. Feb 19, 2020
  5. Feb 17, 2020
  6. Feb 16, 2020
  7. Feb 14, 2020
  8. Feb 13, 2020
    • Junegunn Choi's avatar
      [vim] More border styles · 4fb410a9
      Junegunn Choi authored
      e.g.
      
        let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 0, 'border': 'right' } }
        let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 1, 'border': 'left' } }
        let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 1, 'border': 'top' } }
        let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 0, 'border': 'bottom' } }
      Unverified
      4fb410a9
    • Junegunn Choi's avatar
      [vim] Do not pipe FZF_DEFAULT_COMMAND · 5e1db9fd
      Junegunn Choi authored
      Revert the change introduced in #552. It seems that the startup time
      difference between bash and fish is not much of an issue now.
      
        > time bash -c 'date'
        Thu Feb 13 21:15:03 KST 2020
      
        real    0m0.008s
        user    0m0.003s
        sys     0m0.003s
      
        > time fish -c 'date'
        Thu Feb 13 21:15:05 KST 2020
      
        real    0m0.014s
        user    0m0.007s
        sys     0m0.006s
      
      When we explicitly *pipe* $FZF_DEFAULT_COMMAND instead of making fzf
      internally start the process ($FZF_DEFAULT_COMMAND | fzf), fzf may hang
      if the input process doesn't quickly process SIGPIPE and abort.
      
      Also, fzf#vim#grep temporarily swaps $FZF_DEFAULT_COMMAND instead of
      setting 'sink' so fzf can kill the default command on 'reload'.
      
      https://github.com/junegunn/fzf.vim/issues/927
      
      However, because of the "pipe conversion", the trick wasn't working as
      expected.
      
      https://github.com/junegunn/fzf.vim/blob/467c3277884240f7b5430f8f4d600e3415c38f3b/autoload/fzf/vim.vim#L720-L726
      
      We can go even further and always set $FZF_DEFAULT_COMMAND instead of
      piping source command.
      Unverified
      5e1db9fd
  9. Feb 12, 2020
  10. Feb 10, 2020
  11. Feb 06, 2020
  12. Feb 05, 2020
  13. Feb 04, 2020
  14. Feb 03, 2020
  15. Jan 25, 2020
  16. Jan 22, 2020
  17. Jan 19, 2020
  18. Jan 18, 2020
  19. Jan 15, 2020
  20. Jan 08, 2020
  21. Jan 07, 2020
  22. Dec 31, 2019
  23. Dec 20, 2019
  24. Dec 18, 2019
  25. Dec 16, 2019
Loading