You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I using vigo today for general use, and one of the things that I found annoying was the missing ability to switch between buffers.
I went back and looked at how this was handled in godit, and it appears to use a kind of general autocompletion mode. What would you guys think of applying a similar package to vigo which would provide the ability to type in the command area which would trigger a popover of some description which would contain a list of options which would then be narrowed down as you type?
For a visual example of this, see the screenshot below.
An example implementation of this would be for changing buffers. Typing :ls would trigger the popover which would contain the list of open buffers. Typing in the command area would reduce the list of buffers either until one is selected, or there is only one left. Selecting an item from the list would cause the buffer's to be set as active.
Just wanted to get some feedback on the idea in general. I think this could have many different uses including file system navigation for opening new files, changing buffers, auto completing command mode commands, code completion.
What do you think?
The text was updated successfully, but these errors were encountered:
It's definitely something I have planned to add. I think it was there in the originally godit fork but we pulled it out since we were restructuring a lot of the codebase. I think at this point I'm still not quite happy with how the modes and commands are working, so I'd rather hold off on autocomplete till we have more of that implemented. Every additional feature just means more things to change if we refactor :)
I using vigo today for general use, and one of the things that I found annoying was the missing ability to switch between buffers.
I went back and looked at how this was handled in godit, and it appears to use a kind of general autocompletion mode. What would you guys think of applying a similar package to vigo which would provide the ability to type in the command area which would trigger a popover of some description which would contain a list of options which would then be narrowed down as you type?
For a visual example of this, see the screenshot below.
An example implementation of this would be for changing buffers. Typing
:ls
would trigger the popover which would contain the list of open buffers. Typing in the command area would reduce the list of buffers either until one is selected, or there is only one left. Selecting an item from the list would cause the buffer's to be set as active.Just wanted to get some feedback on the idea in general. I think this could have many different uses including file system navigation for opening new files, changing buffers, auto completing command mode commands, code completion.
What do you think?
The text was updated successfully, but these errors were encountered: