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.
0
votes
0answers
64 views
vim plugins: getting neocomplcache and ruby omni-completion to function correctly
For some reason, I am unable to get neocomplcache and ruby omni-completion to work together. I've modified my .vimrc as per the neocomplcache documentation:
" Enable heavy omni completion, which ...
0
votes
2answers
78 views
How to i show omnicomplete's autocomplete list without autocompleting current text
I am learning vim with omnicomplete. I am wondering whether I can show the omnicomplete list without autocompleting current text. For example,
If I type "str.c" and then invoke omnicomplete, it will ...
1
vote
0answers
119 views
vim omnicomplete with ruby only partially works
I have a +ruby version of vim 7.2 (also tried with 7.3 and custom compiled version) but I am only getting the omnicomplete (ctrl-x ctrl-o) to work in certain instances.
For example, if I have
class ...
0
votes
1answer
67 views
Bash-like code completion in vim?
I'm currently using superTab for completions in Vim. However, I'd like the completions to be more like bash. For example, if I'm typing
st
and the possible completions are
struct, string
I'd ...
2
votes
1answer
82 views
vim html auto close tag, different extension file
I'm using HTML AutCloseTag and it works perfectly in files with .html extension. But I'm using templating and files are named with php extension, then auto close tags doesn't works.
In my vimrc file ...
1
vote
2answers
157 views
How to autocomplete with clang?
I used clang https://github.com/Rip-Rip/clang_complete in my vim, and try to make it work on omnicompletion. The menu can be called out when I type . or ::, but then, I don't know how to choose from ...
0
votes
0answers
90 views
Python (Django) autocompletion in Vim not working even with right path
I followed Sontek's guide and everything was fine until the part about configuring virtual and Django autocomplete. The instructions he gives to get it to work are replicated in every place I looked ...
0
votes
0answers
60 views
How to get vim to change behavior of tab in pumvisible only?
autocmd FileType go imap <tab> <c-x><c-o>
" conflicts with above
autocmd FileType go inoremap <expr> <tab> ((pumvisible())?("\<C-n>"):("\<tab>"))
I'm using ...
1
vote
1answer
92 views
How to avoid the vim omnicomplete menu closing when entering the parameter list?
I’m actively using it for Python and C++ development and it’s kind of frustrating that the menu always closes on me when I enter the function parentheses, because that’s normally when I need most of ...
0
votes
1answer
243 views
Vim Omnicomplete Pattern not found (Python)
I read that omnicompletion should work 'out of the box' but it doesn't, and I wonder what I'm doing wrong.
I compiled the latest version of vim and it shows "+python":
user$ vim --version
VIM - Vi ...
1
vote
1answer
876 views
Vim ruby autocomplete
I give up. This
51 if !exists('g:neocomplcache_omni_patterns')
52 let g:neocomplcache_omni_patterns = {}
53 endif
54
55 if !exists('g:neocomplcache_omni_functions')
56 let ...
1
vote
1answer
55 views
How to fix: Vim completion list selecting completions from bottom of the list and moving upwards
Screenshot:
Vimrc: http://pastebin.com/jijwTChi
As you can see from the screenshot, when the completion list opens it selects the word at the bottom of the list first and moves upwards.
How do I ...
2
votes
1answer
81 views
How to set different auto-completion behaviour in vim for different types of auto completions?
The default behaviour of vim is to write down the first match it found and show a drop down menu with all other. When I use it to auto complete code stuff (like function names from a library) it is ...
3
votes
1answer
66 views
Vim: How to show all completions instead of expanding to “self“ with omnicompletion in Python?
I don’t really need the “feature” of expanding to self when there are no beginning characters of the function/class/etc. specified yet, I’d rather have it show a list of all functions available in ...
5
votes
2answers
106 views
VIM - Sourcing tags from multiple locations in project
Good day,
I typically work on relatively small (less than 20,000 lines of code) projects that are all self contained within a single directory, have their own Makefile, and are fairly easy to work ...
1
vote
1answer
230 views
Vim Omnicppcomplete - partially working
I just installed omnicppcomplete and it is "kindof" working.
The behaviour is realy strange, Omnicppcomplete is working for some files but not for others.
E.g.:
If I open file1.cpp omnicppcomplete ...
1
vote
1answer
78 views
How to disable TAB completion for tags in Vim?
I created tags file using ctags.
Now when I`m trying to use TAB for text completion from buffers I also see all tags in my popup.
How to prevent that and not show tags in completion popup?
I`m ...
0
votes
1answer
93 views
Default Omnicomplete support
I just enabled omnicomplete function(I'm using Vim7.3) and I want to try it out so I wrote a test.c:
int main
{
int appleInc;
app_
}
"_"is where the current cursor is.But when I hit Ctrl X or ...
0
votes
1answer
151 views
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 ...
3
votes
0answers
181 views
What is best way to make Vim's omnicomplete context aware for ruby/rails? (i.e., intellisense)
Vim's auto complete seems like it is just throwing the the kitchen sink at me hoping that one of the words is sothing I need. If I know the first couple characters of the member method, I am ok, but ...
-1
votes
2answers
170 views
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 ...
7
votes
1answer
189 views
Omnicompletion stops giving useful predictions
I am trying to set up omni completion for PHP in vim 7.3 with ctags 5.9~svn20110310 on Ubuntu 12.04.1 (LTS) but I am running into a very strange issue where completion provides radically different ...
2
votes
1answer
91 views
Vim OmniComplete for D
Is there any Vim plugin that provide completition for D using OmniComplete? I have searched over Google but I found nothing.
1
vote
2answers
96 views
vim omni-complete may delete my previous selected word?
I'm writing HTML with gvim, but what annoys me is that the omni-complete always delete my previous word, even my previous selected ones.
For example, assume I'm writing the following code**('_' means ...
0
votes
1answer
274 views
ctags for autocompleting c++ library functions in vim
After following some tutorials i tried to use exuberant ctags to autocomplete e.g. openGL functions. I used the command
ctags -R --languages=C,C++ --c++-kinds=+p --fields=+iaS --extra=+q ./
in the ...
1
vote
1answer
107 views
Vim, Omni Completion and the mess of directories under Windows
I was following this:
http://vim.wikia.com/wiki/C++_code_completion
At some point it says that when you type something like std:: "A box opens with suggestions."
In my case as soon as I type std:: I ...
2
votes
1answer
163 views
How do I edit the VIM Omni Completion so that all CSS properties do not end in a colon?
I have been exploring some way in VIM to automatically append closing characters to a line of code. In my case it is CSS. I came across this tip ...
2
votes
1answer
131 views
How to add words to omni completion dictionary?
For example, if I'm in an html file and it type < then tab, I'll get a list of !doctypes that I can use. However "<!DOCTYPE html>" is not included, and I would like to add it. How do I go ...
3
votes
2answers
235 views
Vim SQL omnicomplete
I'm trying to use the dynamic SQL auto completion (omni menu) feature in vim, but it's not working.
I'm using the Yakuake terminal on Linux Mint, and the DBext vim plugin is working.
I can do ...
0
votes
1answer
254 views
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 ...
0
votes
1answer
371 views
Have omnifunc and completefunc take precedence over supertabs [duplicate]
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 ...
0
votes
0answers
145 views
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 <a hTab and Omni completion ...
2
votes
1answer
435 views
Vim omnicompletion: optional preview window
I've searched for different types of workarounds to deal with the preview window splitting the current window to display documentation when doing a selection in Omnicompletion, like closing the ...
2
votes
1answer
1k views
Twitter Bootstrap Typeahead to function like Google Chrome Omnibox
Love the Twitter Bootstrap typeahead functionality but I have a small tinkering I'd like to do - I want to have the best match (or first match is probably simpler) result in the drop-down be autofill ...
1
vote
1answer
83 views
Code Completion with omni completion for wxpython functions in vim
i have omni completion working fine for regular python functions, but how do i also get it to work for the wxpython functions?
0
votes
2answers
308 views
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.
1
vote
2answers
259 views
Omnicomplete with function definitions from documentation
How do I go about showing the description of functions in Vim when using Omnicomplete for Python?
0
votes
1answer
272 views
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 ...
1
vote
1answer
605 views
Vim with ctags and omnicomplete not completing C struct fields
I have my vim setup to use omnicomplete with ctags and its all working well. I have set my .ctags to tag struct members and they are in the tag file but omnicomplete just shows
Omni completion ...
2
votes
1answer
246 views
VIM php omnicomplete - multi level object hierarchy
I'm working on existing php project with complex object hierarchy. Netbeans is a big help here, because of its autocomplete feature (it's not perfect, but in many cases is accurate enough). It's ...
1
vote
1answer
655 views
In Vim, LaTeX inline equation completion
That's Vim gives us a list of matched "$ some maths symbles $" when we press some keys after typing just "$" or "$ with more maths".
3
votes
1answer
150 views
Vim clears tags after failed omnicompletion
I am using Vim 7.3 with a great deal of plugins, mainly for PHP development. The omnicompletion works well, apart from a small glitch I've come across. I'm trying to work out whether this is a bug in ...
1
vote
1answer
282 views
omnicomplete in vim with shift-tab not working?
Im trying to get vim to allow me to circle through the autocomplete popup list with the tab key. It works fine for tab but not for s-tab (shift-tab).
It seems like shift-tab somehow canceles the ...
3
votes
2answers
2k views
Vim,omnicomplete and python documentation
I started to learn Python, and I tried to setup my vim for it. I have vim 7.3.5.3, it has omnicompletion and I downloaded pyflakes. I read this article
and it says that omnicompletion should also ...
0
votes
1answer
315 views
Python omni-completion in Emacs
I tried two ways for Python omni-completion in Emacs 23:
Semantic in CEDET cannot parse the methods from library import. For example, I have "import os" in Python script. I want it shows everything ...
4
votes
1answer
343 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 ...
0
votes
1answer
590 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, ...
1
vote
0answers
404 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 ...
0
votes
1answer
563 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 ...
5
votes
1answer
89 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 ...