Reputation: 11
One of NeoVim build in feature is: when you type :ls
it shows the Buffer list with open files in it, and then when you enter another command to switch to specific buffer like :b<number>
that command line buffer do not redraw and you could see all opened buffers:
So the question is it possible to activate such a function in Vim, and if so, how?
Upvotes: 0
Views: 229
Reputation: 482
You can make command Ls :ls<CR>:b<Space>
, and set a key mapping to Ls
.
See this article for more setups of the like.
Upvotes: 1