"I can’t show a box with help text related to the function right next to the completion menu in Vim" Couldn't you just populate quickfix instead?
That's still a window that's not right next to the completion menu. If I wanted to use a separate window far away from the menu, I'd use the 'preview' window that was designed for this (and YCM does use it, because there's nothing else on the table).
YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
51–60 of 119 posts
Re: YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
#52YCM does not seem to integrate with snippets like NeoComplCache does, right? Do you plan to do that in the future? Are there reasons to switch from NeoComplCache if you don't program in languages for which a semantic engine is available?
Thank you for building this, awesome work!
Re: YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
#53aside: What about context sensitive/markov completion, backed by say github/google code? And if the prediction was certain enough, offer multi-line completions. This would be helpful in languages/situations that need boilerplate for common tasks, that you'd usually google-paste. Or maybe howdoi -based completion http://news.ycombinator.com/item?id=5027021
Re: YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
#54...not to annoy anyone or start a fwar, but: Does anyone know how to get similar level completion in Sublime Text?
Re: YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
#55aside: What about context sensitive/markov completion, backed by say github/google code? And if the prediction was certain enough, offer multi-line completions. This would be helpful in languages/situations that need boilerplate for common tasks, that you'd usually google-paste. Or maybe howdoi -based completion http://news.ycombinator.com/item?id=5027021
There has been lots of work on intelligent code completion in the SE community. It doesn't seem to be very effective yet, however.
Re: YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
#56This was state of the art emacs in 1997 when I was working on WebLogic. Though at the time it was called hippie-expand mode and it was in emacs. http://emacswiki.org/emacs/HippieExpand Yeah, I went there.
Re: YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
#57Earlier quoted context omitted.
It depends on MacVim on OS X. So for terminal Vim'ers: 1. copy the mvim script from MacVim to /usr/local/bin (or wherever) 2. ln -s /usr/local/bin/mvim vim (assuming you've ditched your old vim symlink) Linking directly to the MacVim binary causes these sorts of issues[0]. [0] https://github.com/altercation/solarized/issues/60
No, don't make a symlink. A simple alias is less obstrusive: alias vim='/path/to/mvim -v'
Re: YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
#58If this plugin works as well as advertised, I'll be extremely happy.
Re: YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
#59This was state of the art emacs in 1997 when I was working on WebLogic. Though at the time it was called hippie-expand mode and it was in emacs. http://emacswiki.org/emacs/HippieExpand Yeah, I went there.
Thanks, I was wondering what where the plugins for emacs for autocomplete. How does HippieExpand compare to autocomplete.el? I'll try to test HippieExpand today!
Re: YouCompleteMe, a Fast, As-You-Type, Fuzzy-Search Code Completion Engine for Vim
#60Earlier quoted context omitted.
No, don't make a symlink. A simple alias is less obstrusive: alias vim='/path/to/mvim -v'
An alias will only work with things that are using your shell with your configuration sourced. Things that merely use your PATH won't pick that up.
$ vim filename