Created
September 26, 2012 11:27
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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