I am using the Julia programming language, and as of right now, there are no good syntax-completer for VIM.
I am working on one, but haven't fully got my head around how to hook into ycmd
.
Til I find some free time to delve in deeply.
I was wondering (if as a stopgap), I could give YCM a list of all completions I want made available.
Then I could at least make all the functions from the Standard Library syntax complete.
Or since I have code right now, that will take a source file, and output all completions for any packages it uses etc, I could generate this list of completions per file, and only have to regenerate when more packages were made use of.
Is this possible?
It wouldn't end up smart I guess since it would not be able to detect when a .
should be used as a trigger, but I think anything is better than nothing.
:help ins-completion
and:help 'complete'
.