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
  • 2 hours ago
  • 12 years ago

Installs

  • Total 5K
  • Win 3K
  • Mac 1K
  • Linux 702
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
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.