I bought an old laptop to amuse myself, and eclipse is just too memory intensive for it. I used to use vi a long time ago so I figured I'll try vim as an IDE... but now I'm having trouble setting up the command completion in vim.
I apt-got the latest vim-full, and I compiled exuberant-ctags 5.6 from their site (apparently the version in the repo's is one that needs a patch). Then I added this to my vimrc
and ran the ctags commandCode:filetype plugin indent on set tags+=~/.vim/systags
Then in a hello world program I declareCode:ctags -R -f ~/.vim/systags /usr/include/qt3/
So when I hit CTRL X CTRL O after app it should give me a list of functions in QApplication, right? All it tells me is that Omni "pattern not found".Code:int main(int argc, char *argv[]){ QApplication app(argc, argv); app.
If I type :tag <tab> it cycles me through thousands of random words (ditto CTRL X CTRL ] .I thought I followed the documentation to a T (vimdocs.sourceforge.net)... Can anybody tell me what I'm missing or doing wrong?



Adv Reply


Bookmarks