-
Notifications
You must be signed in to change notification settings - Fork 19
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
Commits on Nov 1, 2019
-
Configuration menu - View commit details
-
Copy full SHA for bce6588 - Browse repository at this point
Copy the full SHA bce6588View commit details
Commits on Nov 17, 2019
-
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)
Configuration menu - View commit details
-
Copy full SHA for 98cf399 - Browse repository at this point
Copy the full SHA 98cf399View commit details
Commits on Nov 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for fcdb7a0 - Browse repository at this point
Copy the full SHA fcdb7a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6eda9fd - Browse repository at this point
Copy the full SHA 6eda9fdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 65edb6a - Browse repository at this point
Copy the full SHA 65edb6aView commit details
Commits on Dec 17, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 206ec5e - Browse repository at this point
Copy the full SHA 206ec5eView commit details
Commits on Dec 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f71f480 - Browse repository at this point
Copy the full SHA f71f480View commit details
Commits on Dec 22, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 76669c3 - Browse repository at this point
Copy the full SHA 76669c3View commit details
Commits on Jan 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for fab0597 - Browse repository at this point
Copy the full SHA fab0597View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b778dc - Browse repository at this point
Copy the full SHA 8b778dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a6894d - Browse repository at this point
Copy the full SHA 8a6894dView commit details
Commits on Jan 14, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 360f7f3 - Browse repository at this point
Copy the full SHA 360f7f3View commit details -
Revert "[[B]Commits] Add support for files in submodules (#919)"
This reverts commit 360f7f3.
Configuration menu - View commit details
-
Copy full SHA for 6eeeab6 - Browse repository at this point
Copy the full SHA 6eeeab6View commit details -
Use FZF_PREVIEW_LINES instead of LINES (#931)
Since fzf v0.18.0 FZF_PREVIEW_LINES is preferred over LINES
Configuration menu - View commit details
-
Copy full SHA for dc4c4c2 - Browse repository at this point
Copy the full SHA dc4c4c2View commit details
Commits on Feb 4, 2020
-
Configuration menu - View commit details
-
Copy full SHA for dc7796a - Browse repository at this point
Copy the full SHA dc7796aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ee08c8f - Browse repository at this point
Copy the full SHA ee08c8fView commit details
Commits on Feb 5, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 467c327 - Browse repository at this point
Copy the full SHA 467c327View commit details
Commits on Feb 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 48a2d80 - Browse repository at this point
Copy the full SHA 48a2d80View commit details
Commits on Mar 5, 2020
-
Configuration menu - View commit details
-
Copy full SHA for e32a9c3 - Browse repository at this point
Copy the full SHA e32a9c3View commit details
Commits on Mar 11, 2020
-
Remove unnecessary escaping in tilde expansion (#962)
Kohei Murakami authoredMar 11, 2020 Configuration menu - View commit details
-
Copy full SHA for ed9d66c - Browse repository at this point
Copy the full SHA ed9d66cView commit details
Commits on Mar 15, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 15ed47f - Browse repository at this point
Copy the full SHA 15ed47fView commit details -
Enable preview window for BTags
Close #195 Close #799 Close #724 Close #955
Configuration menu - View commit details
-
Copy full SHA for ef24327 - Browse repository at this point
Copy the full SHA ef24327View commit details -
Configuration menu - View commit details
-
Copy full SHA for d16ddcf - Browse repository at this point
Copy the full SHA d16ddcfView commit details
Commits on Mar 17, 2020
-
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
Configuration menu - View commit details
-
Copy full SHA for 7ccecee - Browse repository at this point
Copy the full SHA 7cceceeView commit details -
Configuration menu - View commit details
-
Copy full SHA for d4d36b4 - Browse repository at this point
Copy the full SHA d4d36b4View commit details
Commits on Apr 5, 2020
-
[fzf#vim#with_preview] Do not override --preview-window with the defa…
…ult value Fix #975
Configuration menu - View commit details
-
Copy full SHA for f90b319 - Browse repository at this point
Copy the full SHA f90b319View commit details
Commits on Apr 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f86ef1b - Browse repository at this point
Copy the full SHA f86ef1bView commit details
Commits on May 1, 2020
-
[Maps] Display filename and line number (#998)
Fix #997 Co-authored-by: Ian Homer <ihomer@worth.systems>
Configuration menu - View commit details
-
Copy full SHA for 4cf475b - Browse repository at this point
Copy the full SHA 4cf475bView commit details
Commits on May 3, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 5b6f282 - Browse repository at this point
Copy the full SHA 5b6f282View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c07630 - Browse repository at this point
Copy the full SHA 2c07630View commit details
Commits on May 5, 2020
-
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>
Configuration menu - View commit details
-
Copy full SHA for 25bed07 - Browse repository at this point
Copy the full SHA 25bed07View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3925db8 - Browse repository at this point
Copy the full SHA 3925db8View commit details
Commits on May 12, 2020
-
Add undocumented fzf#vim#_recent_files function (#1024)
* Rename and make `s:all_files` public for user fzf extension
Configuration menu - View commit details
-
Copy full SHA for a74605b - Browse repository at this point
Copy the full SHA a74605bView commit details
Commits on May 23, 2020
-
[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
Configuration menu - View commit details
-
Copy full SHA for 996ec3b - Browse repository at this point
Copy the full SHA 996ec3bView commit details -
[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.
Configuration menu - View commit details
-
Copy full SHA for 7a65517 - Browse repository at this point
Copy the full SHA 7a65517View commit details
Commits on Jun 1, 2020
-
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.
Configuration menu - View commit details
-
Copy full SHA for 5aa5977 - Browse repository at this point
Copy the full SHA 5aa5977View commit details
Commits on Jun 7, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 16e3efb - Browse repository at this point
Copy the full SHA 16e3efbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f1e73b - Browse repository at this point
Copy the full SHA 8f1e73bView commit details
Commits on Jun 21, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 2bf85d2 - Browse repository at this point
Copy the full SHA 2bf85d2View commit details
Commits on Jul 13, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8173331 - Browse repository at this point
Copy the full SHA 8173331View commit details -
Use SKIM_DEFAULT_COMMAND in fzf#vim#grep
This should fix that function.
Configuration menu - View commit details
-
Copy full SHA for a9c2179 - Browse repository at this point
Copy the full SHA a9c2179View commit details