How to set up project autocomplete in brackets?

I am using brackets for Node.JS development apps. As I know the brackets rely on the TernJS library. When I add the root of a project file named .tern-project

with the following lines, I don't see any changes in autocomplete.

{
  "libs": [],
  "plugins": {
    "node": {}
  }
}

      

After that, I can still see browser hints, JQuery hints, AngularJS hints, etc. How can I setup TernJS for a project (directory) in brackets?

+3


source to share


1 answer


I found the ternific plugin to work well for every project configuration.



+1


source







All Articles