tern
tern copied to clipboard
A JavaScript code analyzer for deep, cross-editor language support
If you use emacs in CYGWIN and nodejs installed by WIN installer, when you use tern, you'll receive a message like this: Request failed: Could not start Tern server module.js:559...
I find this more useful than just showing the first line of the docs.
I don't get candidates for top level source directories, only one level deeper when trying to write an `import` statement in 'MyComponent.js': `import foo from 'servi|` gives nothing `import foo...
It seems like WebGL auto-completion is not included in browser.json Is anyone doing it? If not, I could get started on it. (Though I probably won't finish so soon)
If you wish to ignore .jsx files, you can explicitly define that in a regex in the dontLoad option
``` ****@**** MINGW64 ~/AppData/Roaming/Brackets/extensions/user/ternific/node_modules/tern/bin $ ./condense --name p /c/wamp/www/libraries/p5.js { "!name": "p" } ``` Can't generate json for p5.js library using condense. I'm using tern in Brackets editor and Im...
Is it's possible to skip imports section when doing `tern-find-definition`? ```js // foo.js export default function Foo() {} (1) ``` ```js // bar.js import Foo from "./foo.js"; // (2) new...
I am trying to find all references of a symbol. For Example- **file1.js -** ``` define(function (require, exports, module) { "use strict"; **var some = require("some");** function doSome() { //do...
How can add autocomplete support for methods with same name and different parameters?
First of all, I really really like tern. It really solves a lot of problems for me. Basically, I have a webpack project where I have multiple javascript modules. /project/...