First, to get the most out of autocomplete, install Package Management , restart, then install SublimeCodeIntel and restart. The memory issues mentioned in some of these early issues since 2012 have been fixed. However, you will need to wait for SCI to index your project and turn it on, which may take some time.
Then go to Preferences -> Settings - User and add the following (remove the last comma if it is the last entry in the array):
"auto_complete": true, "auto_complete_commit_on_tab": true, "auto_complete_selector": "source, meta.tag", // you can make this "source - comment, meta.tag" if you don't want autocomplete in comments "auto_complete_triggers": [ {"selector": "text.html", "characters": "<"}, {"selector": "source, text.html", "characters": "."} ],
and everything should be installed.
BTW, "IntelliSense" is a trademark of Microsoft; in other contexts, it is simply referred to as AutoFill or AutoFill.
Mattdmo
source share