Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync with fzf.vim #14

Closed
wants to merge 41 commits into from
Closed

Sync with fzf.vim #14

wants to merge 41 commits into from

Commits on Nov 1, 2019

  1. Configuration menu
    Copy the full SHA
    bce6588 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2019

  1. Change fzf#vim#grep to rely on temporary FZF_DEFAULT_COMMAND

    Related #907
    Also junegunn/fzf#1750
    
    function! RipgrepFzf(query, fullscreen)
      let command_fmt = 'rg --column --line-number --no-heading --color=always --smart-case %s || true'
      let initial_command = printf(command_fmt, shellescape(a:query))
      let reload_command = printf(command_fmt, '{q}')
      let options = {'options': ['--phony', '--query', a:query, '--bind', 'change:reload:'.reload_command]}
      call fzf#vim#grep(initial_command, 1, options, a:fullscreen)
    endfunction
    
    command! -nargs=* -bang RF call RipgrepFzf(<q-args>, <bang>0)
    junegunn committed Nov 17, 2019
    Configuration menu
    Copy the full SHA
    98cf399 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2019

  1. Fix broken anchor in link (#908)

    dvdbng authored and junegunn committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    fcdb7a0 View commit details
    Browse the repository at this point in the history
  2. Revamp README

    junegunn committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    6eda9fd View commit details
    Browse the repository at this point in the history
  3. Update ISSUE_TEMPLATE

    junegunn committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    65edb6a View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2019

  1. Configuration menu
    Copy the full SHA
    206ec5e View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2019

  1. Update examples

    junegunn committed Dec 18, 2019
    Configuration menu
    Copy the full SHA
    f71f480 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2019

  1. Deprecate preview.rb

    junegunn committed Dec 22, 2019
    Configuration menu
    Copy the full SHA
    76669c3 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2020

  1. Configuration menu
    Copy the full SHA
    fab0597 View commit details
    Browse the repository at this point in the history
  2. Remove useless line in autocmd (#924)

    NilsIrl authored and junegunn committed Jan 10, 2020
    Configuration menu
    Copy the full SHA
    8b778dc View commit details
    Browse the repository at this point in the history
  3. Fix typo (#914)

    tockn authored and junegunn committed Jan 10, 2020
    Configuration menu
    Copy the full SHA
    8a6894d View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2020

  1. Configuration menu
    Copy the full SHA
    360f7f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6eeeab6 View commit details
    Browse the repository at this point in the history
  3. Use FZF_PREVIEW_LINES instead of LINES (#931)

    Since fzf v0.18.0 FZF_PREVIEW_LINES is preferred over LINES
    Phong authored and junegunn committed Jan 14, 2020
    Configuration menu
    Copy the full SHA
    dc4c4c2 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2020

  1. Configuration menu
    Copy the full SHA
    dc7796a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ee08c8f View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2020

  1. Configuration menu
    Copy the full SHA
    467c327 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2020

  1. Configuration menu
    Copy the full SHA
    48a2d80 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2020

  1. Configuration menu
    Copy the full SHA
    e32a9c3 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2020

  1. Remove unnecessary escaping in tilde expansion (#962)

    Kohei Murakami authored Mar 11, 2020
    Configuration menu
    Copy the full SHA
    ed9d66c View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2020

  1. Configuration menu
    Copy the full SHA
    15ed47f View commit details
    Browse the repository at this point in the history
  2. Enable preview window for BTags

    Close #195
    Close #799
    
    Close #724
    Close #955
    junegunn committed Mar 15, 2020
    Configuration menu
    Copy the full SHA
    ef24327 View commit details
    Browse the repository at this point in the history
  3. [History] Fix #964

    junegunn committed Mar 15, 2020
    Configuration menu
    Copy the full SHA
    d16ddcf View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2020

  1. Clarification: Files command runs $FZF_DEFAULT_COMMAND

    Files is equivalent to running fzf without input pipe; fzf reads the
    output of $FZF_DEFAULT_COMMAND
    
    Related: #966
    junegunn committed Mar 17, 2020
    Configuration menu
    Copy the full SHA
    7ccecee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d4d36b4 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2020

  1. Configuration menu
    Copy the full SHA
    f90b319 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2020

  1. Configuration menu
    Copy the full SHA
    f86ef1b View commit details
    Browse the repository at this point in the history

Commits on May 1, 2020

  1. [Maps] Display filename and line number (#998)

    Fix #997
    
    Co-authored-by: Ian Homer <ihomer@worth.systems>
    ianhomer and Ian Homer authored May 1, 2020
    Configuration menu
    Copy the full SHA
    4cf475b View commit details
    Browse the repository at this point in the history

Commits on May 3, 2020

  1. Configuration menu
    Copy the full SHA
    5b6f282 View commit details
    Browse the repository at this point in the history
  2. Better completion example

    junegunn committed May 3, 2020
    Configuration menu
    Copy the full SHA
    2c07630 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2020

  1. Use -- before the search pattern for Ag, Rg, etc. (#1012)

    Before this patch, a search pattern starting with a dash like
    `:Rg -bang` would fail (or exhibit the wrong behaviour) because it would
    be treated as a option. However, this case is very common when searching
    for ->member in a project in C, C++, PHP, etc.
    
    Co-authored-by: Alexandre Perrin <alex@atipik.ch>
    kaworu and Alexandre Perrin authored May 5, 2020
    Configuration menu
    Copy the full SHA
    25bed07 View commit details
    Browse the repository at this point in the history
  2. Update vim help file

    junegunn committed May 5, 2020
    Configuration menu
    Copy the full SHA
    3925db8 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2020

  1. Add undocumented fzf#vim#_recent_files function (#1024)

    * Rename and make `s:all_files` public for user fzf extension
    jesseleite authored May 12, 2020
    Configuration menu
    Copy the full SHA
    a74605b View commit details
    Browse the repository at this point in the history

Commits on May 23, 2020

  1. [Helptags] Fix perl script for Windows (#1036)

    Temporary perl script that parses output of help grep doesn't take into
    account backward slash as windows path separator.
    
    Fixes #987
    habamax authored May 23, 2020
    Configuration menu
    Copy the full SHA
    996ec3b View commit details
    Browse the repository at this point in the history
  2. [fzf#vim#with_preview] Support WSL bash (#1026)

    * [fzf#vim#with_preview] support wsl bash
    
    Close junegunn/fzf.vim#988
    Close junegunn/fzf.vim#1009
    
    * [fzf#vim#with_preview] use abs path for bin/
    
    WSL has issues with relative filepaths.
    janlazo authored May 23, 2020
    Configuration menu
    Copy the full SHA
    7a65517 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2020

  1. Handle absolute windows paths in Grep/Ag/Ripgrep sink process (#1038)

    Fix #1037
    
    Function `ag_to_qf` is used to parse line produced by Grep, Ag or
    Ripgrep. Implementation in quesition split it using regexp that doesn't
    work for windows absolut paths.
    
    A better approach is to use `matchlist` function.
    habamax authored Jun 1, 2020
    Configuration menu
    Copy the full SHA
    5aa5977 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2020

  1. Disable preview window if bash is not found

    Fix #1039
    junegunn committed Jun 7, 2020
    Configuration menu
    Copy the full SHA
    16e3efb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8f1e73b View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2020

  1. Configuration menu
    Copy the full SHA
    2bf85d2 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2020

  1. Configuration menu
    Copy the full SHA
    8173331 View commit details
    Browse the repository at this point in the history
  2. Use SKIM_DEFAULT_COMMAND in fzf#vim#grep

    This should fix that function.
    fsouza committed Jul 13, 2020
    Configuration menu
    Copy the full SHA
    a9c2179 View commit details
    Browse the repository at this point in the history