2
votes
3answers
172 views
Getting VIM to be efficient in Actionscript like Flex
I'm trying to setup VIM for editing Actionscript 3 for some upcoming Flash projects. I dislike working in an IDE and prefer VIM. Right now, I know that I want:
Omnicomplete (with tab completion)
…
1
vote
1answer
111 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 …
2
votes
4answers
236 views
Vim omnicompletion for Java
I've read heaps of blogs on Vim's supposedly great omnicompletion, and yet no matter what I do I can't get it to work satisfactorily. It took me ages to figure discover that the version of ctags that …
1
vote
0answers
78 views
pythoncomplete in vim - hardcode factory function returns?
I'm using pythoncomplete omnicompletion in vim.
It works great when I instantiate classes directly, eg
import numpy as np
x = np.ndarray(l)
then x attributes complete correctly.
But I work with …
2
votes
2answers
118 views
Vim Python omni-completion failing to work on system modules
I'm noticing that even for system modules, code completion doesn't work too well.
For example, if I have a simple file that does:
import re
p = re.compile(pattern)
m = p.search(line)
If I type p., …
1
vote
0answers
22 views
Vim XMLns context awareness.
I've used Vim's g:xmldata_ to describe xml possible elements to be able to use omni-compete for xml. The problem is not each 'A' node has 'a0', 'a1', 'an'. Sometimes 'A' node has only 'a0'. And the …
0
votes
1answer
66 views
Using css_color plugin for vim causes omni completion not to work
I am using the css_color.vim script with gvim 7.2 on vista. Because of this script I am not able to use omni-completion for css that came with the gvim I installed, which works perfectly fine if I …
6
votes
3answers
266 views
Vim style Omnicomplete for emacs?
I've found several code completion elisp packages for emacs that do code completion, but most bind to a key such as M-/ to toggle completion. Is there something similar to Vim's omnicomplete where …
3
votes
6answers
1k views
Is there any way to get python omnicomplete to work with non-system modules in vim?
The only thing I can get python omnicomplete to work with are system modules. I get nothing for help with modules in my site-packages or modules that I'm currently working on.
0
votes
1answer
265 views
making vim load omnicomplete from current working directory
Hi,
I am trying to make vim portable by statically compiling it and then using my own vimrc and plugins and stuff that lives in my portable directory...
I have recently used vi omnicomplete plugin …
1
vote
1answer
158 views
How do I get Vim Omni Completion working in Makefiles?
I'd like to be able to use Vim omni-completion in Makefiles, so that I can get auto-complete for target dependencies and such. Anybody know how to do this?
0
votes
2answers
241 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, …
1
vote
2answers
140 views
Is there a plugin--omnicomplete or other— that will suggest python modules to import?
For example:
from datetime import <c-x><c-o>{list of modules inside datetime package}
0
votes
0answers
151 views
Vim SQLComplete OMNI completion in Windows
I've recently started using VIM (7.2) in Windows and have been trying to use the OMNI completion feature when editing SQL.
When at the start of a new line it appears to work fine. For example, if I …
7
votes
4answers
451 views
Is there a way to change the behavior of the vim omnicomplete menu?
Omnicompletion is working, but it automatically inserts the first result.
What I'd like to do is open the omnicomplete menu, then be able to type to narrow down the results, then hit enter or tab or …
