Is there any way to open quickfix list even only one definition/declaration/xxxx ?
leoatchina opened this issue · 5 comments
leoatchina commented
Just as the title, I want to preview subcommands Goto
in quickfixlist firstly even there is only one, do preview and decide open in vsplit/split/tabe
puremourning commented
Not currently. Can you elaborate your use case?
leoatchina commented
like glance.nvim
, I like view def
in floating window, and deside open the it in split/vscplit/tabe or jump to edit
Since YCM cannot sending results to popup window direction , quickfixlist is also acceptable, and I can
- preview in
vim-quickui
, and open in split/vsplit/tabe by configedftplugin/qf.vim
- use
LeaderQuickfx
command to shift quickfix to leaderf popup windows , and open in sp/vsp/tab/e
leoatchina commented
In brief
I want to 1. preview defs. 2. decide how to open
puremourning commented
I have this little script called "YCMPedit" that does the equivalent of :pedit for GoTo: https://github.com/puremourning/.vim-mac/blob/master/plugin/ycm_pedit.vim maybe that can do something like what you want.
leoatchina commented
thx