Tagged Questions
The omnicppcomplete tag has no wiki summary.
6
votes
2answers
202 views
omnicppcomplete not supporting all forms of const
I have omnicppcomplete working fine except once in a while it won't complete some of the variables methods/members. I finally got annoyed enough to dig into why and I believe the reason is that ...
5
votes
1answer
81 views
How can I make vim tag jumps as smart as OmniCppComplete?
I generate my tags (Exuberant Ctags 5.9~svn20110310) like this:
ctags --c++-kinds=+p --fields=+iaS --extra=+q -L ctags.files
I have roughly this class structure:
class RenderObject
{
...
3
votes
2answers
90 views
c++, omnicppcomplete doesn't show methods for string
The problem about ctags and omnicppcomplete in vim. Omni does not show methods of class "string". (I had the same problem with STL library. I solved it by downloading STL and run ctags in this folder ...
2
votes
1answer
164 views
VIM omnicppcomplete does not work for function parameters
I'm trying to use omnicppcomplete in VIM and I can't get it to work for variables passed to a function. For example, typing the following
function1( MyObject obj ) {
obj.|
}
results in "--Omni ...
2
votes
3answers
429 views
VIM+ctags+omnicppcomplete
I am linux newbie, but I finally decided to try one, I recently installed openSUSE. On windows 7 I used Visual Studio for c/c++ programming. I tried to find any IDE under linux, tried KDevelop but ...
2
votes
1answer
860 views
vim omnicppcomplete pattern not found
I installed vim7.3 on my computer (under windows 7) and i want to use an autocomplete plugin.
I searched a lot and found that Omnicppcomplete is the best for that.
So i followed this tutorial: ...
2
votes
2answers
467 views
How to let omnicppcomplete automatically close empty argument lists?
Is it possible to let Vim's omnicppcomplete automatically close argument lists for functions or methods that do not take any arguments?
For example, assuming v is an STL vector, when auto completing ...
2
votes
1answer
1k views
Problems getting Vim's omnicppcomplete to work right
I'm trying to get OmniCppcomplete to work and I'm running into trouble. I've followed the steps on this page (including the things to add to the .vimrc file). I downloaded and extracted the zip file ...
1
vote
1answer
53 views
Vim + omnicppcomplete enum completion
Is it possible to make vim autocomplete from enum?
Completion of structs works fine but enum completion doesn't work
I have this code in C for example :
enum {foo0, foo1, foo2} MyEnum;
MyEnum = ...
1
vote
2answers
396 views
Vim OmniCppComplete on vectors of pointers
I might have done something wrong in the set up but is OmniCppComplete supposed to provide the members/functions of classes when doing this?
vectorofpointers[0]->
At the moment all I get when ...
0
votes
2answers
270 views
Improving vim omni completion
How can I add help information or improve omni completion in vim?
For example, in a CSS file, when you type 'font', omni completion could show the expected values (font: "font-style font-variant ...
0
votes
0answers
118 views
omnicppcomplete works for standard c++ classes but not my own
I followed the instructions at http://vim.wikia.com/wiki/C%2B%2B_code_completion
When I type
std:: (I get the completion list correctly.)
Same for
vector willitcompletewhenitypedot;
...
0
votes
2answers
285 views
VIM+Ctags doesn't work in WinXP
Okay guys, you're my only help :)
I have GVIM v. 7.3, Exuberant CTags 5.8, omnicppcomplete (0.41) - all latest, to be exact.
I'm trying to generate tags to use in VIM, but it seems to totally ignore ...
0
votes
2answers
706 views
How to get the func prototype after selecting the func via omnicppcomplete?
Is there a way to get vim to paste a function's arguments after selecting it via omnifunc (or at least displaying it after selecting it, but not before)? Something like:
myObject.play(int time, ...