Tagged Questions
Omnicomplete is the name of the Vim feature which provides smart autocompletion. A popup menu offers word completion choices that may include struct and class members, system functions, and more. It is similar to Microsoft's IntelliSense.
21
votes
6answers
4k views
Vim's Omnicompletion with Python just doesn't work
I've searched around for an hour, both on Stack Overflow and elsewhere. Alas! Please help. Vim's omnicompletion just doesn't work.
I have Vim 7.2 compiled with Python support.
filetype plugin on is ...
13
votes
2answers
5k views
vim omnicomplete vs. vim intellisense
Are Vim OmniComplete and Vim Intellisense mutually exclusive or complimentary? I'm a bit confused by conflicting terminology and implementations, such as these C++ OmniComplete and C++ Intellisence ...
12
votes
4answers
1k 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 ...
10
votes
2answers
923 views
Vim + OmniCppComplete: Completing on Class Members which are STL containers
Completion on class members which are STL containers is failing.
Completion on local objects which are STL containers works fine.
For example, given the following files:
// foo.h
#include ...
7
votes
1answer
217 views
Vim status bar prediction/completion?
I played with some vim scripting yesterday and managed to get some over-the-status-bar prediction to whatever I'm typing at the moment, with cycling - see screenshot (gray + yellow bar).
Problem ...
7
votes
1answer
432 views
Vim omni completion: continue typing to select desired item
Consider I have typed
file.f
When I type Ctrl-X Ctrl-O, the omni-completion popup is shown and the first item is selected. So this is what I see:
file.fileno
---------
fileno() ...
7
votes
3answers
950 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 ...
6
votes
2answers
720 views
Is VIM omni-completion really so limited? Or am I missing something?
Ruby:
file = File.new("some.txt", "r")
lines = file.readlines
Omni-completion tests
file.readl
---------
readline <- PASSED
readlines
---------
"hola".capital
---------
...
6
votes
6answers
3k 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.
5
votes
1answer
59 views
How do I change the boundaries of symbols used/detected in Vim omni completion?
For example, in Sass I'm using dashes for variable names, and I have a variable called:
$hello-there
If I type in he then attempt to complete it, it will only complete hello. How would I make it so ...
5
votes
2answers
200 views
Is there any way to set up good autocompletion for Ruby in Vim?
I've been trying to set up Vim autocompletion for Ruby code and have not been successful. I mean things "work", but I would expect a better plugin or configuration to be available.
I've set up the ...
5
votes
4answers
4k 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 ...
4
votes
1answer
76 views
No omnicompletion for python class members in vim?
I want to create tags (ctags 5.8) file for my classes in python.For functions, and class members defined outside the class definition omnicompletion works ok. However if I define data member in a ...
4
votes
1answer
188 views
How to tame Vim omnicompletion for Perl files?
Well ... :-) ... just typing in the title of my question, a highly effective answer turned up in the catalogue of questions with similiar titles. (Which just goes to show how good this website is!) ...
4
votes
5answers
3k 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)
...
3
votes
1answer
129 views
Vim with python support enviromental variables
If i type in the vim command line
:python import os;print os.getenv('PYTHONPATH')
I get a path
If i close vim and on the same terminal do
echo $PYTHONPATH
I get another completly different path
...
3
votes
1answer
444 views
Vim omnicompletion for C#
I was wondering if there is any tool like OmniCppComplete for C# (method signature shown in the abbreviation is what I'm most interested in). I've searched everywhere with not avail.
Update: I'll be ...
3
votes
1answer
533 views
Vim's omnicompletion fails with “from” imports in Python
Omnicompletion for Python seems to fail when there is a "from" import instead of a normal one.
For example, if I have these two files:
Test.py:
class Test:
def method(self):
pass
...
3
votes
2answers
335 views
Is it possible to use different tags files for omnicomplete and general tag browsing in Vim?
I've been using ctags in Vim for years, but I've only just discovered omnicomplete. (It seems good.)
However, I have a problem: to get omnicomplete working properly I have to use the --extra=+q ...
2
votes
0answers
112 views
Problem with Ruby OmniComplete in Vim 7.3 finding matches at one line but not 2 lines down
Im trying to figure out why ruby omnicompl only works sometimes for me.
Here it's working as expected.
But when I try the same thing on the same ivar 2 lines down I get "Pattern not found"
Both ...
2
votes
1answer
392 views
rails.vim with ruby omnicompletion giving “Error loading rails environment” error
I'm trying to get up and working with vim with ruby on rails and am having a few problems with omni-completion.
I have downloaded the rails.vim plugin for vim, which appears to be installed, with a ...
2
votes
1answer
414 views
vim java omnicomplete
I'm doing my best to follow the directions for install here: http://vim.sourceforge.net/scripts/script.php?script_id=1785, but I can't get it working and it seems sort of vague.
Here's what I've ...
2
votes
1answer
454 views
vim could not load library python26.dll but i'm using python 2.7?
Using vim and when I try use omnicomplete for python I get an error
Required vim compiled with +python.
When I try
:python print 'hello'
I get
E370: Could not load library python26.dll
...
2
votes
1answer
60 views
omniORB::MaxMessageSize in omni 4
I am working on a porting project where omni3 has been used. Now we are integrating it with omni 4 which omniORB::MaxMessageSize function is not supported. Anyone know from which function we have to ...
2
votes
1answer
561 views
Use VIM omnicomplete for javascript with ctags
I am using vim/gvim for 4 months already and now I found a way to use it's strengths.
My tags file is generated very well and here is a simple row in it.
my.namespace.classname /path/to/file.js ...
2
votes
0answers
596 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
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 ...
2
votes
2answers
778 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., ...
2
votes
0answers
93 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 ...
2
votes
1answer
242 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?
1
vote
0answers
70 views
namespace aware omnicomplete in vim
I have been trying to find an answer to my trouble with no luck, so here is my question.
Our C++ classes are defined in several namespaces. So, frequently, class members have a type that belongs to ...
1
vote
2answers
109 views
How do I map ctrl x ctrl o to ctrl space in terminal vim?
After searching a bit on the net it seems that I can't map ctrl space to anything/alot. Is there a way to do it today, what I found was usually 2 years old.
1
vote
0answers
134 views
How to make Vim Python Omnicompletion behave? [closed]
Possible Duplicate:
Is there a way to change the behavior of the vim omnicomplete menu?
Problem with Vim omnicomplete and system Python
I am trying to use Vim's omni-completion for ...
1
vote
1answer
124 views
Problem with Vim omnicomplete and system Python
I have Vim set up, with +python (:version says it's ok). My .vimrc contains
filetype plugin on
set ofu=syntaxcomplete#Complete
autocmd FileType python setlocal omnifunc=pythoncomplete#Complete
When ...
1
vote
0answers
271 views
Vim Python completion
I'm having trouble with Vim and Python completion.
In fact I'm totally confused how does this work.
I have generic gvim 7.3, on windows 7 (with python/dyn)
I'm using SuperTab plugin, amongst many ...
1
vote
1answer
576 views
Vim and python: context-unaware autocompletion of language methods
I am writing a little python script to learn VIM basics (I'm a beginner with VIM).
I've configured VIM to work with omnicompletion, and it does.
For example, if I write str. then press ctr+x, ctr+o it ...
1
vote
2answers
555 views
How change short keys in Vim?
I am a new user in Vim. How change these keys in Zen Coding,
ctr+y+,
To
ctr+e
And also change in omni,
ctr+x ctr+o
To
ctr+j
How can I do that?
1
vote
1answer
54 views
gvim - omnicompletion on remote ftp crashes
Hello I have a problem using latest vim with omnicompletion while editing a file that is located remotely on ftp. :e ftp-address//it just hangs on "searching" and then outputs that it is missing a ...
1
vote
2answers
270 views
Calling omnicompletion for every keypress in vim
I have a vim script that uses a one line window to get a filename pattern from the user. This pattern can be completed to a full filename from a database if you press CTRL-X CTRL-O. Now the only ...
1
vote
2answers
332 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 ...
1
vote
1answer
586 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 ...
1
vote
2answers
256 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
53 views
neocomplcache: Trying to set html omni completion for a php or phtml FileType doesnt work
Setting html omni completion works just fine for html FileType with:
autocmd FileType html setlocal omnifunc=htmlcomplete#CompleteTags
but it does not wokr for phtml FileType:
autocmd FileType ...
0
votes
1answer
88 views
OmniComplete and Vim issues
I'm trying to get omnicomplete to work for C++, and while everything seems to be in order, when I reset my omnifunc to be omnifunc=omni#cpp#complete#Main, the plugin does not recognize the omnifunc, ...
0
votes
0answers
116 views
Change omnicomplete on the fly using supertab
I use the supertab plugin in vim.
These are my default settings (in _vimrc)
let g:SuperTabDefaultCompletionType = '<c-x><c-k>' -->(dictionary)
let ...
0
votes
0answers
27 views
Limiting the minimum completion code length for OnmiCppCompletion?
I read about VIM plugin onmicompletion's document , seems it doesn't mention anything related to this , sometimes when current string is too short , e.g 2 characters , pressing ^X^O may cause problem ...
0
votes
1answer
280 views
Getting omnicppcomplete and ctags to work in VIM
Here's my .vimrc
syntax on
set number
set nowrap
set autoindent
" configure tags - add additional tags here or comment out not-used ones
set tags+=~/.vim/tags/cpp_files
set tags+=~/.vim/tags/cpp_src/
...
0
votes
0answers
105 views
Problem with vim OmniComplete for c++
I am trying to use omnicomplete with vim 7.0. I am followed the steps as mentioned in http://vim.wikia.com/wiki/C%2B%2B_code_completion
But when I start typing std:: . It gives an error
"Error ...
0
votes
0answers
47 views
How to show Perl POD Information in Vim Omnicompletion
Is there someway to automatically show perl pod information in vim perl omnicompletion?
I would like to see what are the expected parameters to a method in omnicompletion just like what happens with ...
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 ...