-
Notifications
You must be signed in to change notification settings - Fork 52
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
Having issues installing #123
Comments
And you should be good to go. |
Does not seem to work. |
There are two tern plugins for Sublime. One is under the name of There won't be autocompletion for
And you should get a tooltip for the available methods you can do on an array like so: It can also infer types: and if you use Example sum.js: /**
* Returns the sum of two operands
* @param {Number} a The first operand
* @param {Number} b The second operand
* @return {Number} The sum of both operands
*/
function sum (a, b) {
return a + b
}
module.exports = sum You'll want to make sure you have the following in your user preferences: {
"auto_complete": true,
"auto_complete_triggers": [
{"selector": "text.html", "characters": "<"},
{"selector": "source.js", "characters": "."}
]
} |
The github readme specifies installation via going into /Roaming/ST3/Packages and git cloning this repo, followed by npm install.
Now I'm not sure if installing via the package manager accomplishes the same as above, but i've also tried doing that.
Sometimes when trying from a clean insall, ill get the following: http://prntscr.com/ble0nx
Going to that directly and manually initiating the npm install seems to go through successful, but I am unable to get basic autocomplete working. I also noticed it often doesnt show up in package settings.
So what is the basic install process here? What am I missing?
The text was updated successfully, but these errors were encountered: