项目作者: cylc

项目描述 :
TextMate bundle for the Cylc language (for TextMate, PyCharm, WebStorm, Sublime)
高级语言: Ruby
项目地址: git://github.com/cylc/Cylc.tmbundle.git
创建时间: 2020-04-23T18:38:33Z
项目社区:https://github.com/cylc/Cylc.tmbundle

开源协议:GNU General Public License v3.0

下载


Cylc TextMate Bundle

Last updated: 2024-05-15

A TextMate bundle for working with Cylc workflow
configuration files.

Installing

Download this repository keeping the .tmbundle extension.

  • TextMate - Open the bundle file.
  • PyCharm - instructions
  • WebStorm - instructions
  • Sublime Text 3:

    git clone https://github.com/cylc/Cylc.tmbundle <path to sublime packages>/Cylc.tmbundle

    (to get package path click Preferences => Browse Packages)

FAQ - How do I enable syntax highlighting for all .rc files?

By default this bundle will enable highlighting for suite.rc and .cylc files (plus a few others), but not all .rc files. However, you can add your own file associations:

Once you’ve downloaded the repository, open the Syntaxes/cylc.tmLanguage file and add <string>rc</string> under the fileTypes key, like this:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>fileTypes</key>
  6. <array>
  7. <string>suite.rc</string>
  8. <string>cylc</string>
  9. + <string>rc</string>
  10. </array>
  11. ...

You will probably have to restart the editor for this to take effect.

Note: you can add exact matches (e.g. suite.rc.processed) OR extensions without the dot (e.g. rc), but you cannot use wildcards (e.g. * won’t work).

Building

This bundle is built from the
Cylc TextMate grammar.

The bundle needs to be re-built when the grammar is updated. This is done by
running build.rb.

Tue builder requires the
plist gem.

How to Build A Bundle From Scratch

Bundles can be created via the TextMate app (Mac OS only).

The bundle editor appears to have disappeared in version 2, these steps apply
to TextMate 1.5:

  1. Open TextMate.
  2. Open the bundle editor via the bundle menu.
  3. Create a new bundle.
  4. Within that bundle create a new language.
  5. Close the bundle editor.
  6. Navigate to /Users/$USER/Library/Application Support/TextMate/Bundles/.

You now have a blank bundle. We need the bundle for two things:

  1. The info.plist file (which we will keep).
  2. The uuid in the language file (which we will use in the build process).