Skip to content

Instantly share code, notes, and snippets.

@cori
Created September 26, 2012 11:27
Show Gist options
  • Save cori/3787455 to your computer and use it in GitHub Desktop.
Save cori/3787455 to your computer and use it in GitHub Desktop.
site properties for output of javascript console.log() calls to scite output window
# from http://blog.scriptoid.com/2010/07/run-javascript-from-scite.html and http://blog.dotsmart.net/2007/12/19/editing-and-testing-scripts-in-scite/ via http://stackoverflow.com/questions/11053560/testing-and-editing-javascript-both-standalone-and-in-html-in-scite
# *.vbs files
command.go.$(file.patterns.wscript)=cscript.exe //nologo "$(FilePath)"
command.go.subsystem.$(file.patterns.wscript)=0
# *.js files
# path to jrunscript from jdk
command.go.*.js=D:\Program Files\Java\jdk1.7.0_07\bin\jrunscript $(FileNameExt)
#command.go.*.js=cscript.exe //nologo "$(FilePath)"
#command.go.subsystem.*.js=0
# Run batch files inside SciTE
command.go.$(file.patterns.batch)="$(FilePath)"
command.go.subsystem.$(file.patterns.batch)=0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment