Adobe Brackets meteor autofill editor

Is there a way to make meteor autofill in Adobe Brackets?

+6
source share
3 answers
  • Install the ternific plugin in File> Extension Manager
  • Download the meteor.js file from https://github.com/slava/tern-meteor to the tern folder Brackets / extensions / user / ternific / tern / plugins
  • In the Meteor project, create a .tern-project file or a folder with contents, similar to:
  {
         "libs": [
           "browser",
           "jquery",
           "underscore"
         ],
         "loadEagerly": ["* .js", "* / *. js", "* / * / *. js", "* / * / * / *. js"],
         "dontLoad": [".meteor"],
         "plugins": {
           "meteor": {}
         }
       }

or you can edit the standard.-project in brackets / extensions / user / ternific / tern /

+9
source

Adobe Brackets uses TernJS to autocomplete. There is a TernJS plugin for working with Meteor: https://github.com/slava/tern-meteor

You will need to find a way to specify the brackets for using this plugin or contact the brace keepers to do this for you.

+1
source

Just a note for anyone trying to extend the Ternific Brackets extension for working with Ubuntu. Before installing the extension, make sure that the brackets are started with root privileges (i.e., run sudo brackets in the terminal).

This will ensure that the extension is installed with the appropriate permissions. After installation, exit the bracket and run it as usual, and you should be good to go.

0
source

Source: https://habr.com/ru/post/977953/


All Articles