Difference between revisions of "Syntax Highlighting for smartGENERATOR"

From BITPlan Wiki
Jump to navigation Jump to search
Line 8: Line 8:
 
= Vim =
 
= Vim =
 
[[File:Vim-3D-blue-clouds.jpg|140px|left]]
 
[[File:Vim-3D-blue-clouds.jpg|140px|left]]
 +
You can install the [[File:Smartgen.vim|Vim Syntaxhighlighting definition file smartgen.vim]] in you vim environment and manually call:
 
<source lang='vim'>
 
<source lang='vim'>
 
set syntax=smartgen
 
set syntax=smartgen
 
</source>
 
</source>
 +
to activate it. The sgsyntax script below will automatically find your vim base directory and also modify your filetypes.vim file. Unfortunately there is a
 +
special rule for configure.in in filetypes.vim so you might want to manually move the
 +
<source lang='vim'>
 +
" smartGENERATOR *.in files
 +
au BufNewFile,BufRead *.in setf smartgen
 +
</source>
 +
definition up to where configure.in his handled or even remove that special case in favor of the smartGENERATOR case
  
 
= Eclipse =
 
= Eclipse =

Revision as of 15:28, 11 July 2018

Ultraedit

UltraEditLogo.png

Ultraedit uses so called "Wordfiles" for syntax highlighting

To add the File:Smartgenerator.uew you might want to follow the instructions at:

or use the automatic install script you find below.

Vim

Vim-3D-blue-clouds.jpg

You can install the File:Smartgen.vim in you vim environment and manually call:

set syntax=smartgen

to activate it. The sgsyntax script below will automatically find your vim base directory and also modify your filetypes.vim file. Unfortunately there is a special rule for configure.in in filetypes.vim so you might want to manually move the

" smartGENERATOR *.in files
au BufNewFile,BufRead *.in setf smartgen

definition up to where configure.in his handled or even remove that special case in favor of the smartGENERATOR case

Eclipse

Eclipse-SVG.svg

The File:SmartGenEditorPlugin.zip can be used to install an editor that can syntax-highlight the smartGENERATOR Template files. It depends on your version of Eclipse how this Eclipse Version 2.0 Plugin needs to be installed. For Eclipse Versions prior to Luna you can simply unpack the Plugin from the ZIP file so that it contents are in the plugin directory (please note that the zip is including the plugin directory so it may be necessary to move the content after unpacking).

For newer versions you might want to unzip the contents to the dropins/eclipse/plugins directory or use the install script below. Please also make sure you install the Eclipse Version 2.0 Plugin support into your eclipse environment see https://stackoverflow.com/a/24519677/1497139.

Syntaxhighlighting install Script

The Bash Script File:Sgsyntax.sh has been tested on Mac OS (Macports environment) and Linux to install the three different flavors of Syntax Highlighting. Even if you intend to install the syntax highlighting in a different environment the source code might give you some insight on what is necessary. Please also give feedback to support@bitplan.com if you need adaptions to your environment.