> That sounds intriguing...but I like the quickfix window! I wonder if > it would be possible to make the quickfix window modifiable, instead? > Then you could "filter" by using normal Vim commands, like g/\(warning > \|error\)/d for example. If you try this now (setting the 'ma' option > manually) the line numbers being jumped to get all messed up.
You can modify the quicklist programmatically using Vimscript. See the getqflist() and setqflist() functions (and getloclist() and setloclist()). Though not the same as using regular Vim commands, you could write yourself user commands to do common useful tasks with the quickfix list, such as filtering out warnings, removing the line the cursor is on (e.g. once you believe you've fixed it!), etc.. It could also be handy being able to temporarily add your own; it'd be like marks but with descriptions! Ben. --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
