python - How can I add a new language auto complete and suggestions for sublime text? -
i'm trying create new language support sublime text 3. i've been creating syntax highlighting using yaml
, i'd when i'm writing code, sublime text css
or php
, start typing command , recognizes , shows list possible commands , when choose it, they're written in code automatically. fill it. how can this?
maybe if have tips make syntax highlight, great! thanks
would snippets work your? declare snippet like
<snippet> <content><![cdata[-content want fill here-]]></content> <tabtrigger>-implicit key binder-</tabtrigger> <scope>source.php</scope> </snippet>
and save under packages/user
.
Comments
Post a Comment