367 Commits (ab30844a7a33ee9728b161125d29608322904d44)
 

Author SHA1 Message Date
bhagwan ab30844a7a internal: added 'fn_post_fzf' callback 3 years ago
bhagwan b2aee6f1d3 'git_status' preview rework, stage|unstage with <left>|<right> (#239) 3 years ago
bhagwan aec049eaa6 disable 'cursorline' on resume 3 years ago
bhagwan d15b90e8c3 tabs: 'ctrl-x': enable multi-delete and resume 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 a6213f05e1 builtin: default exclude from 'resume' (#267) 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 338a1ef6a2 README update 3 years ago
bhagwan db3e71200d added 'changes' as a subset of 'jumps' (#264) 3 years ago
bhagwan bd57c8c2e8 bugfix: 'preview-page-reset' for tags|btags 3 years ago
bhagwan 41f8752f49 removed unnecessary debug print in 'goto_jump' 3 years ago
bhagwan 8338ecd673 do not delete typed query on consequitive 'resume' calls 3 years ago
bhagwan d10b203408 removed deprecated 'files_resume' from README/help 3 years ago
bhagwan 1ece1ab09a added 'resume': will resume **any** list, custom or builtin (#241) 3 years ago
bhagwan 18837e1174 internal: wrap warning message from 'read_file_async' (closes #263) 3 years ago
bhagwan d874e7705a added 'jumps', closes #264 3 years ago
bhagwan b2bcca20c2 better way of getting nvim-web-devicons path (closes #260) 3 years ago
Tamir Zahavi-Brunner 9421bc225f Do not remap when calling feedkeys (closes #258)
When calling vim.fn.feedkeys for commands or searches ,which means it is
prefixed by ":" or "/", one of those keys could be remapped to something
else. Calling feedkeys with "n" means this mapping would be ignored.
3 years ago
bhagwan 3147d9b170 grep|live_grep: display informative messages on regex parse errors 3 years ago
bhagwan 62d279d74b live_grep_resume: defaulted to multiprocess, better DEBUG message 3 years ago
bhagwan d07c5c8522 restore 'cursorline' after 'nvim_open_win' (closes #254) 3 years ago
bhagwan 31a678e4de tags, btags: hide line numbers with builtin previewer 3 years ago
bhagwan 37ea63c26b grep|live_grep: added support for multiprocess search resume 3 years ago
bhagwan 887d6a4cd3 live_grep: multiprocess as default provider, added glob support 3 years ago
bhagwan 429f9572e0 live_grep_native: added multiprocess and icons support 3 years ago
bhagwan 681e5afe86 spawn_stdio: standardize stderr:write 3 years ago
bhagwan 704a81f90b properly exit neovim headless with <C-c> 3 years ago
bhagwan c569296070 internal: replace error messages from 'io.write' to 'io.stderr:write' 3 years ago
bhagwan 1a98c8919d restored 'multiprocess=true' as default (hopefully for the last time) 3 years ago
bhagwan 058a01f8d1 spawn_stdio: write error message using 'io.stderr' 3 years ago
John Drouhard 317aafa3c3 Fix multiprocess mode pipes to use io.write() instead of opening a new file descriptor on /dev/stdout and /dev/stderr 3 years ago
bhagwan 4a013fd41d multiprocess: use 'io.write' instead of 'uv.pipe:write' 3 years ago
bhagwan c614b62da7 set 'mutliprocess = false' as default until I figure out all terms 3 years ago
bhagwan d5994bf062 internal: make_entry 'file_icon_padding' minor optimization 3 years ago
bhagwan 5f31f98c8f internal: wrap load devicons and git diff files in 'pcall' 3 years ago
bhagwan d5998988c9 file actions: entry line/column take precedence over ctag navigation 3 years ago
bhagwan f8b447dbbd remove 'nvim-fzf' depedency 3 years ago
bhagwan c7dd8ac887 bugfix: previewer reload between two nameless buffers (closes #250) 3 years ago
bhagwan ab8b1a1de2 restore 'multiprocess = true' as default for 'files|grep' 3 years ago
bhagwan 828aceb3a3 internal: move git diff retrieval to make_entry.preprocess 3 years ago
bhagwan 7fa17b85bb file_icon_padding default to empty string 3 years ago
bhagwan 9ad0aefbdb set 'multiprocess = false' as the default 3 years ago
bhagwan f7b8b8d9d0 bugfix: 'git_icons' with 'mutliprocess = true' 3 years ago
bhagwan d7cc460959 last commit broken if devicons not present (#247) 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 fd4e94e7a4 tags: rewind to line 1 before executing search (issue #245) 3 years ago
bhagwan 72fe3222d3 keymaps: properly display <Space> (closes issue #246) 3 years ago
bhagwan e7c4970146 tags: jump to pattern when opening buffer (closes #245) 3 years ago