Skip to content

Instantly share code, notes, and snippets.

@shivkumarganesh
Created September 29, 2012 09:13
Show Gist options
  • Save shivkumarganesh/3803535 to your computer and use it in GitHub Desktop.
Save shivkumarganesh/3803535 to your computer and use it in GitHub Desktop.
Visage Editor (Make Scite as the Default Visage Editor) - Just add this in the file cpp.properties {ie. Options->cpp.properties}
#For Visage Compilation/Build/Run
command.compile.*.visage=visagec -d . $(FileNameExt)
command.build.*.visage=visagec -d . *.visage
command.go.*.visage=visage -cp . $(FileName)
# jad = decompiled class files; pde = Processing.org sketch files
file.patterns.visage=*.visage
lexer.$(file.patterns.visage)=cpp
word.characters.$(file.patterns.visage)=$(word.chars.cxx)$-
#For Visage
keywordclass.visage=abstract after and as assert at attribute before bind bound break \
catch class continue def delete else exclusive extends false finally for from function \
if import indexof insert instanceof lazy mod new not null \
or override package private protected public-init public public-read \
return reverse sizeof static super then this throw true try typeof \
var while
#For Visage
keywords2.$(file.patterns.visage)=Boolean Duration Integer Number Object String Void \
Character Byte Short Long Float Double \
isInitialized isSameObject print println \
first in init into inverse last on postinit replace step trigger tween where with
#For Visage Compilation/Build/Run {if PLAT_GTK}
command.compile.*.visage=visagec -d bin $(FileNameExt)
command.build.*.visage=visagec -d bin *.visage
command.go.*.visage=visage -cp bin $(FileName)
#For Visage Compilation/Build/Run {Put this under if PLAT_WIN}
command.compile.*.visage=visagec -d . $(FileNameExt)
command.build.*.visage=visagec -d . *.visage
command.go.*.visage=visage -cp . $(FileName)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment