On Feb 8, 12:06 pm, ni va <[email protected]> wrote: > > > vim -c "make" -c "copen" > > > > From within Vim: > > > > :make | copen > > > > Or you cas use :cwindow instead of :copen if you only want to open the > > > quickfix window when there are errors. > > Yes maybe it it cwindow I need because another example base on ctags > proposal results. > > I am using ctags and when I CTRL+ leftclick on word to jump to its > reference, I would like the cwindow open automatically. > In order to avoid me to type :ts and choose 1 2 3 etc.. >
Vim's ctags interface does not use the quickfix window. Maybe you have a plugin that does this for you, in which case you should consult the plugin documentation. Instead of using :ts, you can: :set cscopetag and now CTRL+] at least will automatically bring up a selection list for multiple matches. -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
