ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Autocomplete Javascript with Method Signature

by eladyarkoni ALL

Very lightweight plugin for sublime text editor

Details

  • 2014.06.10.11.05.22
  • github.​com
  • github.​com
  • 10 years ago
  • 2 hours ago
  • 12 years ago

Installs

  • Total 89K
  • Win 58K
  • Mac 17K
  • Linux 15K
May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27
Windows 3 1 2 1 3 3 2 4 3 1 1 0 4 0 0 1 1 5 4 2 2 2 1 3 2 4 2 2 0 3 1 1 3 3 1 1 1 2 3 1 4 1 0 1 1 1
Mac 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0
Linux 1 1 0 3 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 3 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 4 1 2 0 0 0 1 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 vars 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>