Lightweight, not complex, hint, simply completion. There are no complex snippets, just a completions.
Package Control will be available soon.
Download files and place it at sublime package path like /Sublime Text 2/Data/Packages/User.
files:
- Download raw file JavaScript api
- Download raw file jQuery api
How to trigger completion hint when every typing?
Open file Packages/User/Preferences.sublime-settings or click Setting - User from menu. In my case, I just setup the auto_complete_triggers property as follow:
"auto_complete_triggers":
[
{
"characters": "<>\"'-_qazwsxedcrfvtgbyhnujmikolpQAZWSXEDCRFVTGBYHNUJMIKOLP",
"selector": "text, source, meta, string, punctuation, constant"
}
],It will active most of scope triggers and most of characters.





