Provides syntax highlighting for .gms
and .inc
files and shortcuts for running GAMS models.
Using Sublime Package Control (recommended): If you have installed Sublime Package Control, you can easily install the GAMS Language package via the Package Control: Install Package
menu item (shortcut: CTRL+SHIFT+P). Search for GAMS Language
in the list.
Without Git: Download the latest source zip from github and extract the files to your Sublime Text "Packages" directory, into a new directory named GAMS language.
With Git: Clone the repository in your Sublime Text "Packages" directory:
git clone git://github.com/lolow/sublime-gams.git "GAMS language"
It is necessary to rename the directory as "GAMS language"
The "Packages" directory is located at:
- OS X:
~/Library/Application Support/Sublime Text 2/Packages/
- Linux:
~/.Sublime Text {2,3}/Packages/
- Windows:
%APPDATA%/Sublime Text {2,3}/Packages/
You can access it through the menu in Preferences
> Browse Packages...
The General Algebraic Modeling System (GAMS) is a high-level modeling system for mathematical programming and optimization. It consists of a language compiler and a stable of integrated high-performance solvers. GAMS is tailored for complex, large scale modeling applications, and allows you to build large maintainable models that can be adapted quickly to new situations.
GAMS is the property of GAMS Software GmbH (http://www.gams.com).
You need gams or gams.exe in your PATH. Please update your environment variable PATH.
To launch gams, open your file.gms and type CTRL+B (Build).
Type CTRL+SHIFT+G to switch between the code file.gms and the listing file.lst.
In the GAMS listing, file.lst, type CTRL+R (Goto Symbol) to list and jump to the error statements.
In GAMS, by default, block comments are delineated by $ONTEXT/$OFFTEXT, and line comments are started by a star *.
This package also adds the comment highlighting for end of line # and //, and the inline comments delineated by curly brackets: { } or in C-style with /** **/.
In order to GAMS to process these new comment conventions, you need to add in your code some of these commands:
$eolcom //
$eolcom #
$inlinecom {}
$inlinecom /* */
You can create a custom GAMS call ("Build" in Sublime Text). Go to Preferences > Packages Settings > GAMS > Build Custom. It creates a file in User, called 'Gams Custom.sublime-build'. Copy the content of the default build file (Preferences > Packages Settings > GAMS > Build Custom) and modify the content according to your needs. Some examples are given in comment.
To use it, you need now to select Tools > Build System > Gams Custom in order to use it. Note that you can create several build files for your different needs.
Any remarks, suggestion about the syntax highlighting have to be adressed to the author Laurent Drouet
.