ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

GAMS language

by lolow ALL

Syntax Highlighting for the GAMS modeling language

Details

  • 2019.05.27.10.17.13
  • github.​com
  • github.​com
  • 5 years ago
  • 32 minutes ago
  • 11 years ago

Installs

  • Total 3K
  • Win 2K
  • Mac 840
  • Linux 350
Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11
Windows 0 1 0 0 0 1 1 0 1 0 0 0 0 2 2 1 1 0 0 0 0 0 0 0 1 1 0 0 2 1 2 1 0 0 0 0 1 0 0 0 2 2 1 0 2
Mac 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

GAMS package for Sublime Text 2 and 3

Provides syntax highlighting for .gms and .inc files and shortcuts for running GAMS models.

Installation

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...

GAMS language

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).

Features

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.

GAMS Comments

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 /* */

GAMS Custom launcher

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.

Support

Any remarks, suggestion about the syntax highlighting have to be adressed to the author Laurent Drouet.