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.
Questions tagged [omnicomplete]
121 questions
0
votes
1 answer
Error when starting vim
I am getting the following error on vim startup:
Error detected while processing function 71_OnBufferRead..71_SetOmnicompleteFunc..71_Pyeval: line 2: /usr/local/lib/python2.7/dist-packages/cffi/model.py:532: UserWarning:…

upgrd
- 720
- 7
- 16
0
votes
0 answers
vim omnifunc popup on keypress
I am making my .vimrc. Basically I want my omnifunc menu to popup on any keypress while in insert mode. The basic idea is to
cnoremap
At some point I will probably limit it to the alphabet if I can. And then I will probably…

Tim Palmer
- 46
- 8
0
votes
1 answer
neocomplete autocompletion not working correctly with syntax files
This section is in my .vimrc:
" Enable omni completion
autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
autocmd FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
autocmd FileType javascript setlocal…

user2263786
- 131
- 1
- 1
- 9
0
votes
1 answer
Vim Omnicomplete Autocomplete item selection issue
I am using vim with Omnicomplete. Right now when I type something I get a list of valid option as shown in the image link
Vim Working WIth Omnicomplete
However as you can see none of the options are highlighted in the dropdown menu by default. I…

hellfragger
- 143
- 1
- 4
- 12
0
votes
0 answers
VIM Omnicomplete causing error with youcompleteme plugin
I have an issue with vim completion in a javascript file.
Any character after the period '.' character as in the line below
this.*
produces an error:
Error detected while processing function youcompleteme#Complete..78_GetCompletions:
line …

BIOS
- 1,655
- 5
- 20
- 36
0
votes
1 answer
Vim omnicomplete open documentation on demand
I used Jedi-vim for vim python auto-completion and it works well. It has shortcut to show preview/documentation of a function on demand.
I'm working on C++ projects now and I'm trying to use original omnicomplete+ctag to accomplish the same thing.…

Tommy.Z
- 14
- 4
0
votes
1 answer
Can Vim Omnicomplete suggest Sass variables from a ctags file?
While editing a Sass file, I'd like to be able to use Vim's Omnicompletion () to complete Sass variables that are present in the project's ctags file.
It seems that my ~/.ctags file is configured correctly, because when I type something…

Jay
- 243
- 3
- 9
0
votes
2 answers
how to get rid of weird lines showing on my vim windows after omni completion
Every time after using omnicomplete in vim it gives suggestions in a pop up after my cursor and when I'm done with it, it leaves a line along the pop up.. and it only goes away after scrolling the complete window once. It gets very annoying..
How…

syllogismos
- 600
- 2
- 15
- 39
0
votes
1 answer
OmniCppComplete in Vim available only as root
I tried to install OmniCppComplete in Vim and I followed this tutorial:
http://en.kioskea.net/faq/2367-the-autocompletion-c-c-in-vim
I noticed that the plugin works only if I am as a root. Could anyone give me a tip how to make this plugin available…

pidabrow
- 966
- 1
- 21
- 47
0
votes
1 answer
recompile vim with +python
When I try to use omnicomplete in a .py file vim says that I need to compile vim with +python support. I already have a bunch of plugins downloaded in my vimfiles with pathogen so how do I recompile vim 7.3 with +python support without losing my…

bab
- 2,119
- 3
- 28
- 49
0
votes
1 answer
Have omnifunc and completefunc take precedence over supertabs
Possible Duplicate:
Checking omnifunc before Supertags
How do I have Vim check if any Omni completion or complete-functioning can be done before defaulting to Supertab completion? For example in a .html file I would enter

bab
- 2,119
- 3
- 28
- 49
0
votes
2 answers
Docs for Vim Omnicomplete key bindings
is there a webpage with key bindings (C-x C-o, etc.) for Omnicomplete in Vim? Can't seem to find it online.

jhtong
- 1,529
- 4
- 23
- 34
0
votes
1 answer
Vim fails to set omnifunction with clang
I understand that clang can be used in place of omnicppcomplete. However, after installing clang, vim fails to autocomplete on scripts specified in the vimrc. i.e. previously, autocmd FileType python set omnifunc = pythoncomplete#Complete in…

jhtong
- 1,529
- 4
- 23
- 34
-1
votes
1 answer
OmniSharp Error E216
I have installed omnisharp after spf13. I copied/paste script example vimrc to my .vimrc.local.
After launching vim I get the following error:
Error detected while processing C:\Users\...\_vimrc:
line 59:
E216: No such group or event:…

Katsu
- 1,868
- 4
- 19
- 28
-1
votes
2 answers
why i failed to use omni auto complete when i edit source code?
vim a.py
input:
impo
then press: Cx Co
omin autocomplete just failed with the following message, why?
Error: Required vim compiled with +python …

hugemeow
- 7,777
- 13
- 50
- 63