Autocomplete Javascript with Method Signature
Very lightweight plugin for sublime text editor
Details
Installs
- Total 90K
- Win 58K
- Mac 17K
- Linux 15K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 1 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 2 | 1 | 1 | 2 | 2 | 2 | 3 | 0 | 2 | 2 | 2 | 2 | 0 | 7 | 2 | 0 | 2 | 4 | 0 | 0 | 1 | 1 | 1 | 3 | 4 | 0 | 2 | 0 | 0 | 1 | 2 | 4 | 2 | 2 | 2 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 1 |
Linux | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
MySignature - Sublime Text Package
Wide JavaScript autocomplete functionality for Sublime Text with method/function
signature (arguments) and var
completion. (You can usually make the completion box show up with Ctrl+Space in a js file.)
The package will keep an index of methods/functions seen in .js files doing a dumb parsing: it looks for name = function(...)
and name: function(...)
. It does not evaluate objects.
Since version 2, files are parsed only the first time these are seen and then will only reparse a file if you save it (to keep the index up to date.)
As source for its index will look into:
All the js files of the current opened projects/folders. (this includes all the windows and scans for changes periodically in an optimized way, a file is only parsed in case of a cache miss)
If you open a js file that is outside the current project, it will scan the folder where this file resides.
Completion of methods/functions in unsaved files, and completion of
var
s for the current file are generated on the fly, with the incredible fast API of Sublime Text.
Will trigger its magic in js files and js scopes (eg in a script tag of an HTML file.)
For the original development read about at http://www.eladyarkoni.com/2012/09/sublime-text-auto-complete-plugin.html
For the performance improvements take a look to https://github.com/eladyarkoni/MySignaturePlugin/pull/7
Enjoy!
2012 Elad Yarkoni
2014 Tito Bouzout <tito.bouzout@gmail.com>