-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clarify g:mucomplete#minimum_prefix_length #148
Comments
Is |
Hi, I just meet similar problem, I use tern_for_vim(javascript completion),the popup menu doesn't show up automatically when I press dot key(have to C-x C-o) manual). |
@BrokenHugh maybe you could try augroup insert_dot
au!
au InsertEnter * set iskeyword+=.
au InsertLeave * set iskeyword-=.
augroup END You can limit it to filetypes by changing |
Thank you for your help. It works for me after |
jedi-vim actually remaps If it worked after pressing augroup insert_dot
au!
au FileType javascript inoremap <buffer> . .<c-x><c-o>
augroup END |
In autocompletion mode, MUcomplete by default triggers completion when there are at least two keyword characters in front of the cursor, where “keyword” is defined by the You may use I have been asked in the past to enable completion after a dot in C/C++ and Python, so for such languages completion is already triggered after a dot. Which filetype(s) are you working on? |
The doc states
But I found out that I need this to set to
0
so it works with manual Tab completion after an id with dot (ex.Result.|
) when I use ALE's omnifunc. Otherwise Tab doesn't trigger the completion menu (note that I can trigger completion with C-x C-o just fine).The text was updated successfully, but these errors were encountered: