linrongbin16/fzfx.nvim

Expose command and search history, marks, etc.

savchenko opened this issue · 7 comments

Meta-issue about implementing commands from the original fzf.vim.

Some of the most important ones:

  • :marks in current and all opened files.
  • Command history (Ctrl+F in :)
  • File history (:bro ol)
  • Search history
  • File types (:set ft=)

Thoughts?

yes, I would re-wtite them from fzf.vim, one by one.

@linrongbin16 , do you want any input on the above? I'd be happy to help.

@linrongbin16 , do you want any input on the above? I'd be happy to help.

sure, I am now trying to implement the nvim builtin buffer previewer, it's super difficult, and I am struggling with it.

Also, there's another big performance improvement that introduce async/coroutine for blocking IO processing, it will make this plugin much more smooth.

sure, I am now trying to implement the nvim builtin buffer previewer, it's super difficult, and I am struggling with it.

I wonder if fzf-lua can be of any help. Messaged its author regarding the licensing change (it's currently AGPLv3.0 which is rather unusual for an nVim plugin).

emmmm, the code base is completely different, I don't think I could use it.

hi @savchenko , I submit #627 to add 'FzfxMarks' command, it implements the marks command.

Would you please try it and give some feedbacks?