no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Next revision
config:crystal [2018/07/28 18:33] – created to answer https://github.com/geany/geany/issues/1714 colombanw
Line 1: Line 1:
 +====== Crystal filetype ======
 +Experimental [[http://www.geany.org/manual/#custom-filetypes|custom filetype]] for the [[https://crystal-lang.org/|Crystal]] language.
  
 +<file properties ~/.config/geany/filedefs/filetypes.Crystal.conf>
 +[styling=Ruby]
 +
 +[keywords]
 +primary=abstract alias as as? asm begin break case class def do else elsif end ensure enum extend false for fun if in include instance_sizeof is_a? lib macro module next nil nil? of out pointerof private protected require rescue return select self sizeof struct super then true type typeof uninitialized union unless until when while with yield
 +identifiers=__DIR__ __FILE__ __LINE__ __END_LINE__
 +
 +[lexer_properties=Ruby]
 +
 +[settings=Ruby]
 +lexer_filetype=Ruby
 +tag_parser=Ruby
 +extension=cr
 +
 +[build-menu]
 +FT_00_LB=_Build
 +FT_00_CM=crystal build "%f"
 +FT_00_WD=
 +EX_00_LB=_Run
 +EX_00_CM=crystal run "%f"
 +EX_00_WD=
 +EX_01_LB=_Execute
 +EX_01_CM="./%e"
 +EX_01_WD=
 +</file>
 +
 +And alter your //filetype_extensions.conf// to add the new Crystal filetype.
 +<file properties ~/.config/geany/filetype_extensions.conf>
 +[Extensions]
 +...
 +Crystal=*.cr;
 +...
 +
 +[Groups]
 +...
 +Script=Crystal;
 +...
 +</file>
 +
 +{{tag>configure crystal filetype}}
Print/export