tomtom / quickfixsigns_vim

Mark quickfix & location list items with signs
http://www.vim.org/scripts/script.php?script_id=2584
GNU General Public License v3.0
131 stars 13 forks source link

echo quickfix/location entrie description in command line. #53

Closed mulianov closed 8 years ago

mulianov commented 9 years ago

Could you please add such feature? Echo quickfix/location entries description in command line when cursor point to it.

tomtom commented 8 years ago

Using :echo may have the unpleasant consequence that users are queried to press Enter. Unfortunately, when trying to implement similar functionality for other plugins, it seems it isn't 100% possible to always avoid this.

Anyway, IMHO such a functionality should be implemented in a plugin of its own, which wouldn't be too difficult. On CursorHold(I) events, you'd have to call a function that retrieves the lists via getqflist() and getloclist() and uses filter to get only the items for the current line.