Created
November 6, 2012 06:55
-
-
Save monkstone/4023152 to your computer and use it in GitHub Desktop.
Macro to create new processing sketch in jedit (uses toxis abbreviations)
This file contains hidden or 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
// This macro creates a new 3d processing file uses abbreviations | |
Buffer newBuffer = jEdit.newFile(view); | |
view.goToBuffer(newBuffer); | |
newBuffer.setMode("processing"); | |
textArea.setSelectedText("setup3d#800#600#"); | |
Abbrevs.expandAbbrev(view,true); | |
buffer.saveAs(view,true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Added some dimensions