-
Notifications
You must be signed in to change notification settings - Fork 214
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
Can this pulgin auto complete symbol? #1
Comments
I don't think I follow your example. Can you elaborate on it? |
for example: foo is a func: foo(|tab #generate : |
i use snippets realize this: http://github.com/jinleileiking/vimfiles/blob/master/snippets/ruby.snippets please check the end of the file |
supertab doesn't really control what is completed, it just delegates to the appropriate vim insert completion. So if the insert completion method being used supports that completion (like user or omni completion) then supertab implicitly supports it as well. However, it seems like what you really want is for snipmate to support completing the closing paren for you, but unfortunately when lookup up possible snippets for your example it is looking them up using the word |
like:
(|tab ---- ()
thanks alot!
The text was updated successfully, but these errors were encountered: