> * send the output from :vimgrep into a dropdown window (much like what > fuzzyfinder.vim has) so I can select a file to open
The results of vimgrep are stored as quickfix list. This can be displayed in a window using :cw. Trag[1] has a command Tragcw that displays the list using tlib#input#ListW()[2] that provides an IMHO improved user interface. I don't know about fuzzyfinder but basically a quickfix list is also available via getqflist(). It shouldn't be to difficult to build a menu from that or similar. [1] http://www.vim.org/scripts/script.php?script_id=2033 [2] http://www.vim.org/scripts/script.php?script_id=1863 --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
