yuki-yano / fzf-preview.vim

The plugin that powerfully integrates fzf and (Neo)vim. It is also possible to integrate with coc.nvim.
MIT License
910 stars 37 forks source link

[ Feature Request ] - Per tab buffer list like ctrl-space #230

Open ldelossa opened 3 years ago

ldelossa commented 3 years ago

This is a feature request.

I've recently been looking for a solution that implements per-tab buffer lists.

This is handy, and not a new idea. The use case is usually for browsing large code bases. You may want a tab for two particular packages in a large code base. When you're in one tab, you only want the buffers associated with files inside that package, not the other.

There is a project which does this well. https://github.com/vim-ctrlspace/vim-ctrlspace

I'm using this currently, but I also use coc and fzf-preview. It would be nice if I did not need vim-ctrlspace and could obtain per-tab buffer lists via fzf preview.

Thanks!

yuki-yano commented 3 years ago

Sorry for the delay in replying.

I don't know much about ctrlspace, so I'll have to check and see if it's possible. I will check when I have time, but do you know if ctrlspace makes it possible to get the values you are using as API?

ldelossa commented 3 years ago

No worries on the delay.

There does seem to be a defined API for ctrlspace - https://github.com/vim-ctrlspace/vim-ctrlspace/blob/master/autoload/ctrlspace/api.vim

However, it would be nice if ctrlspace was not required. Would it be possible for fzf-preview to have a vimscript which did some tab -> window -> buffer grokking.

For example when I issue "fzf.preview.TabBuffers" fzf vim looks at the current tab, finds the windows in that tab, and then only displays the buffers of those windows for selection. Something of that nature.

yuki-yano commented 3 years ago

Hmm, I think it would be difficult to reimplement the ctrlspace feature, both in terms of the plugin concept and implementation.

The API seems to be provided, so I'll look into it when I have time.