tern
tern copied to clipboard
A JavaScript code analyzer for deep, cross-editor language support
Run the simplified example in the demo. main.js ``` requirejs(["lru"], function(lru) { function foo() { this.cache = new lru(30) this.cache. } }) ``` lru.js ``` define([], function() { function LRU(size)...
Feature request: Project directory is currently cluttered with .tern-project file, although all project settings could be included into package.json file. https://www.npmjs.org/doc/package.json.html#config Is this possible to move project config to package.json...
I'd just like to experiment with Tern, and AngularJS customizations. I'm on Win7/Cygwin. I put the "tern/bin" directory in my path, then ran "tern" from a new shell. ## I...
One currently acknowledged problem in tern is that completion for modules can take a long time. It would be cool if there were a way to say "digest these node...
CoffeeScript
Is there a way to use tern with CoffeeScript (in vim)?
It would be nice if built-in stuff like arrays and new like [Promises support](https://github.com/marijnh/tern/commit/57cf35fadd802a829795d9edca25f6a5631234e5) could be generalized for other container types through generics which are supported in TypeScript/Flow/AtScript/etc. so we...
I think it could be nice to get the _namepath_ of a method/function/object definition at a given position. The main use I see for that functionality is documentation. By updating...
I see that there is a webpack plugin, which I would like to use. But I, can't figure out how to configure it correctly. My own module root is in...
I'm suffering the freezing of emacs several times when I'm leaving my PC with emacs opened, and the screen saver will appear, after a long time when I'm back, emacs...
Hi @marijnh, Today ternjs is very great, but the only thing is missing is the support for multiple signature. For example for node server.listen, there are 3 signatures: https://nodejs.org/api/http.html#http_server_listen_handle_callback `server.listen(handle[,...