Skip to content

SachaG/tern-meteor

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

TernJS plugin: Meteor

This is a plugin for TernJS bringing support for Meteor JavaScript Framework.

Videos: for Sublime Text, for Vim.

Supported features

  • each file is wrapped in a scope
  • global variable are global project-wise
  • interface definitions converted from meteor.ts.d

Todo features

  • correctly calculate package scope and their exports
  • some auto-completion based on Templates names would be nice
  • generate docs from docs.meteor.com
  • load all Meteor related JS files on the load of any file

Installation for Sublime Text 2/3

  • install Package Control (https://sublime.wbond.net/installation)

  • install sublime-tern plugin (cmd+shift+p -> install package -> TernJS -> restart sublime)

  • cd to Sublime Text packages directory (~/Library/Application Support/Sublime Text 3/Packages on Mac OS X)

  • cd TernJS/ternjs/plugin

  • copy over meteor.js file here

  • create a new sublime project, save it, add files

  • edit project configuration (menu->project->edit project)

  • edit the json file in this manner:

    { "folders": [ ... don't touch this part, leave it as it was ... ], // add this! ternjs object "ternjs": { "libs": ["browser", "underscore", "jquery"], "plugins": { "meteor": {} } } }

Installation for Vim

  • Install tern-vim plugin with your favorite package manager for Vim.

  • cd to .vim folder, tern_for_vim plugin folder and run npm install to fetch tern npm module.

  • Download meteor.js file (from this repo) to tern's folder called plugins.

  • In your Meteor project create a file .tern-project with the contents similar to:

    { "libs": [ "browser", "jquery", "underscore" ], "loadEagerly": [ ], "dontLoad": [ ".meteor" ], "plugins": { "meteor": {} } }

Note: ignore files in .meteor folder.

About

Autocompletion plugin for Meteor (extending TernJS)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%