115 Commits (f86de7aa6bddcfcb6bb0befe1dee6974775b38f0)

Author SHA1 Message Date
bhagwan f1af3d7690 actions.grep_lgrep: changed default bind to <C-g> 3 years ago
bhagwan 27f58c51c2 new feautre: <c-i> to toggle between 'grep|live_grep' 3 years ago
bhagwan f915ba0e9a respect 'winotps_fn' layout overrides in native previewers (#356) 3 years ago
bhagwan ca4dc395d8 removed deprecated providers, 'resume' to accept options 3 years ago
bhagwan 95b82e7973 tags|btags rework, multiprocess performance enhancement (#355) 3 years ago
bhagwan 59de53fbbe lsp_code_actions: 'deepcopy' fallback, 'ui_select' control opt (#353) 3 years ago
bhagwan 0fa4f3d7d7 minimize preview buffer flicker between reloads (#298) 3 years ago
bhagwan 9a0f625804 normaize fzf FIELD INDEX EXPRESSION, see below:
- refactor fzf field index experssion and line field number options
- enable native fzf previewers (bat/cat/head) for all file/buffer providers
- buffers|lines|blines|tabs now respect default previewer
3 years ago
bhagwan 2a2c8502a4 refactor native fzf previewer params 3 years ago
bhagwan 76c7b6d960 removed unnecessary TAB as fzf delimiter 3 years ago
bhagwan 11bf4e86a7 LSP entry delimiter TAB->SPACE, added 'trim_entry' opt (closes #342) 3 years ago
bhagwan fdd3874367 internal: debug_cmd option to supress mulitprocess cmd debug print 3 years ago
bhagwan b033e406ca grep|live_grep: fish shell special chars fixes (closes #340) 3 years ago
bhagwan 2ab8adadb1 enable custom 'nvim-web-devicons' setup with mulitprocess (closes #311) 3 years ago
bhagwan 58e159c36e internal: only replace {argv} when requested by live_grep 3 years ago
bhagwan e40d65c1e1 new option 'show_cwd_header' forces 'cwd' in header line (closes #281) 3 years ago
bhagwan 3717661c83 'resume' rework: better way of storing last query (closes #271) 3 years ago
bhagwan f0927af072 internal: added 'win.save_query', rename internal selection callback 3 years ago
bhagwan 21f19cac1a new option 'global_resume_query': split resume from typed query (#271) 3 years ago
bhagwan ab30844a7a internal: added 'fn_post_fzf' callback 3 years ago
bhagwan bc3edb68cf resume adjustments for buffers|tabs, 'ctrl-x' bwipe now resumes 3 years ago
bhagwan e1674cd8f5 README update: 'no_global_resume' option clarfication 3 years ago
bhagwan 0069dc4a8e resume adjustments for 'live_grep_glob|native' 3 years ago
bhagwan c5ff7b79cc allow empty 'keymap.fzf' table to disable fzf binds (closes #266) 3 years ago
bhagwan 8338ecd673 do not delete typed query on consequitive 'resume' calls 3 years ago
bhagwan 1ece1ab09a added 'resume': will resume **any** list, custom or builtin (#241) 3 years ago
bhagwan 887d6a4cd3 live_grep: multiprocess as default provider, added glob support 3 years ago
bhagwan 828aceb3a3 internal: move git diff retrieval to make_entry.preprocess 3 years ago
bhagwan 2d8a4e9afc major performance improvement: process entries externally, READ BELOW:
Since LUA is single threaded I reached a limit to performance
optimization, both 'git_icons' and 'file_icons' require string
matching and manipulations which eventually hurt performance
when running on large amount of files.
In order to solve that this commit introduces the option to spawn
commands and process the entries in a separate neovim process which
prints to stdio as if it was a regular shell command. This speeds up
things significantly and also makes the UI super responsive as if fzf
was run in the shell. This required a few lua hacks to be able to load
nvim-web-devicons in a '--headless --clean' instance and sharing the
user configuration through the RPC interface from the running instance.
This is enabled by default for 'files' and 'grep' providers and can also
be enabled for 'git.files' if required, control using the 'multiprocess'
option.
3 years ago
bhagwan 05e22a4a61 performance optimizations, read below:
- do not spawn cmd with libuv unless 'file_icons' or 'git_icons' are set
- 'path.starts_with_separator' minor regex optimization
- 'files' cmd fallback order is now fd, **rg** and then find
- 'strip_cwd_prefix' enabled again (default: 'true')
- 'cwd' header line added to 'files' and 'git' providers
3 years ago
bhagwan 2f30c9cb21 temporarily disable 'strip_cwd_prefix' 3 years ago
bhagwan 58031b63d9 internal: default option condition optimization 3 years ago
bhagwan ccc9ee3e4f strip cwd prefix './' from files (fd v8.3.0 '--strip-cwd-prefix') 3 years ago
bhagwan e02451600a 'live_grep' freezes on large text files (#211) 3 years ago
bhagwan fc2f4b5d7d instantiate previewer from 'opts.previewer:new()' 3 years ago
bhagwan 9aab21b318 added support for 'nvim-jdtls' LSP URIs (closes issue #195)
'nvim-jdtls' extends the LSP to support eclipse jdt classes
since classes are inside '.jar' file it displays them as 'jdt://'
URIs which are then handled by 'nvim-jdtls', we can then use
'vim.lsp.util.jump_to_location' to open the URIs.
3 years ago
bhagwan e4b7041957 internal: raw_fzf perf improvements 3 years ago
bhagwan f947669dec internal: libuv helpers, perf enhancements 3 years ago
bhagwan fd497f313d internal 'live_grep' modifications (hopefully solves #185) 3 years ago
bhagwan 30f50017bf internal: renamed 'cb_pid' -> 'pid_cb' 3 years ago
bhagwan 69b70ec2ec terminate initial command when fzf is closed (issue #187) 3 years ago
bhagwan 544d5eabc8 new preview scrollbar option and highlights, win|preview options rework 3 years ago
bhagwan 913c3c650d better error handling of fzf exit status (nvim-fzf PR #36) 3 years ago
bhagwan b9c03225a7 added 'live_grep_glob' for dynamic rg filtering with '--glob|iglob' 3 years ago
bhagwan a499bd78a4 added experimental icon support for 'live_grep' (+resume) (issue #168)
Warning: this may cause a performance degradation so you have to
manually enable this by setting `grep.experimental = true` or directly
via `:lua require'fzf-lua'.live_grep({ experimental = true })`
3 years ago
bhagwan 67163f4c5f better handling of 'cwd' in 'live_rg' (should solve issue #166) 3 years ago
bhagwan 64ceffcd0a default action for files changed to 'file_edit_or_qf', read below:
- normalized action callback 'selected' table, before this change
  selected items table were passed through transparently from nvim-fzf
  meaning the first item in the table could either be a selected item
  or the name of the keybind pressed (when multiple actions were
  present), this changes makes sure 'selected' table contains only
  valid items (removes the keybind if necessary)
  If you've developed a custom action callback please modify it to
  start enumerating the items at 'selected[1]' (and not selected[2])
- fixed minor issue with 'fzf_colors' on default colorschemes
3 years ago
bhagwan 7a554bb2b2 added fullscreen option (closes issue #150), minor keymap breaking changes
'fzf_binds' and 'previewers.builtin.keymap' were merged and moved under
'keymap.fzf' and 'keymap.builtin' respectively.
See ':help fzf-lua-customization' how to reconfigure.
3 years ago
bhagwan 7243918bdd Default border color set to 'Normal', minor 'git_diff' fix 3 years ago
bhagwan fdae33b047 live_grep_resume performance (closes issue #154) 3 years ago