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

Sublime V8

by akira-cn ST2

v8 engine for sublime text 2

Details

  • 2013.12.06.08.25.06
  • github.​com
  • github.​com
  • 10 years ago
  • 19 minutes ago
  • 12 years ago

Installs

  • Total 5K
  • Win 3K
  • Mac 1K
  • Linux 702
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 Aug 28 Aug 27 Aug 26 Aug 25 Aug 24 Aug 23 Aug 22 Aug 21 Aug 20
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

sublime-v8

added Google v8 engine to sublime text 2

Realtime syntax checking with PyV8

check & mark syntax errors

Show jshint result by press ctrl+alt+h key

jshint result can be shown (including errors and warnings)

with jshint settings in JSHINT.sublime-settings

A JavaScript console supported

a js console shown by press ctrl+alt+j key

use it like the python console

Writing plugin in JavaScript:

//example
 require('base');

 exports = TextCommand("HelloWorld", function(view, edit){
     view.insert(edit, 0, "HelloWorld");
     console.log(view.file_name());
 });

Troubeshooting

If the plugin doesn't work, follow the guide - lib/PyV8/README.md.