TypescriptCompletion
Typescript auto completion with your project method name, and inject method manually with a module/class/method dictionary build from your TypeScript project
Details
Installs
- Total 90K
- Win 47K
- Mac 26K
- Linux 18K
Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 3 | 3 | 5 | 3 | 6 | 4 | 2 | 2 | 2 | 2 | 5 | 5 | 3 | 1 | 4 | 4 | 3 | 1 | 5 | 3 | 1 | 4 | 9 | 5 | 6 | 5 | 4 | 5 | 4 | 2 | 5 | 6 | 2 | 6 | 2 | 0 | 4 | 7 | 5 | 7 | 5 | 3 | 3 | 4 | 1 |
Mac | 0 | 3 | 0 | 2 | 4 | 0 | 1 | 0 | 6 | 2 | 3 | 1 | 3 | 2 | 0 | 0 | 0 | 4 | 3 | 3 | 2 | 0 | 2 | 3 | 0 | 5 | 3 | 3 | 2 | 1 | 0 | 4 | 4 | 4 | 3 | 1 | 1 | 3 | 2 | 4 | 0 | 0 | 0 | 3 | 1 | 2 |
Linux | 0 | 1 | 1 | 4 | 1 | 2 | 0 | 5 | 1 | 2 | 3 | 0 | 4 | 2 | 2 | 1 | 0 | 4 | 2 | 2 | 0 | 0 | 0 | 2 | 1 | 3 | 2 | 3 | 1 | 1 | 2 | 4 | 2 | 3 | 3 | 1 | 4 | 1 | 0 | 0 | 3 | 0 | 1 | 4 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
TypescriptCompletion
TypeScript Auto Completion with your project method name, and inject method manually with a module/class/method dictionary build from your TypeScript project
It's one of my first Python's project, so write in a basic Python way, please fork me or leave comment / issue and help me improve this plugin !
Installation
With Package Control:
search for TypescriptCompletion on package control and you will find it !
Manual:
Clone this repository in your sublime package, generally:
> /Users/yourname/Library/Application Support/Sublime Text 3/Packages/
If you want to check if sublime text correctly load the plugin, you can show the console on view > show console and see a line:
reloading plugin User.TSCompletion
Usage
Auto completion:
Classic Sublime Text auto-completion popup was extend with your own project method. If you are not in a sublime project, you can fill manually a project path to inspect for auto-completion, press:
cmd+shift+a
Then it's ok for this session ! Sublime text auto completion will work as usual, but extend with your method, so more powerfull for you !!
Manual auto completion with class choice:
cmd+shift+a
When you choose a class, then a method, TypescriptCompletion will write for you the method name and it's arguments for you
ToDo
- find/read lib.d.ts of typescript to fill auto completion with it
- add constructor support
- add interface support
- detect module of the current file and use it to auto complet static method from other module (not write absolute “path” like root.module1.module2.Static if we are already on module1 but write module2.Static)
- listen for dot “.”, sublime doesn't do it.
- a lot of idea remaining !