项目作者: jibsen

项目描述 :
YAML to tmTheme
高级语言: Python
项目地址: git://github.com/jibsen/yamltotm.git
创建时间: 2014-08-05T19:05:05Z
项目社区:https://github.com/jibsen/yamltotm

开源协议:MIT License

下载


YAML to tmTheme

Color schemes for the TextMate and SublimeText editors (tmTheme files)
are stored as plist XML, which is not the most human friendly format to
edit and maintain.

This project is an example of generating tmTheme files from YAML sources
using a Python script. This has a number of advantages:

  • easy for humans to read and modify
  • little structural overhead
  • schemes can be modularized
  • allows simple templating

Example schemes:

Related work:

Usage

The scripts are written for Python 3, and use PyYAML.

yamltotm.py takes one or more YAML files and generates a tmTheme file. An
optional dictionary can be provided.

  1. usage: yamltotm.py [-h] [-r] [-d DICT] infile [infile ...] outfile
  2. Convert YAML to tmTheme.
  3. positional arguments:
  4. infile YAML scheme file
  5. outfile tmTheme scheme file
  6. options:
  7. -h, --help show this help message and exit
  8. -r, --raw Do not convert to tmTheme, but output the raw populated scheme.
  9. -d DICT, --dict DICT YAML dictionary file

All input files are concatenated before they are processed, so it is important
to divide files in a way that maintains the structure of the content. For
tmTheme files this usually means keeping all top level keys in the first
file, ordered so settings is last. This way all further files go into
settings.

The dictionary is a YAML file mapping identifiers to their replacement. In the
strings of the input file (both key and value), $identifier will be replaced
with the value of identifier in the dictionary. $$ is an escape to insert
a literal $.

tmtoyaml.py converts a tmTheme file to YAML. The generated file is a simple
dump, but can serve as a starting point.

Example

Given a scheme file

  1. name: $name
  2. uuid: $uuid
  3. settings:
  4. # Editor settings
  5. - settings:
  6. background: $blue
  7. foreground: $white
  8. # Root groups
  9. - name: Comment
  10. scope: comment
  11. settings:
  12. foreground: $gray

and a dictionary

  1. name: Simple Blue
  2. uuid: e42124f9-7cf8-4477-ad7b-31a7f1050504
  3. blue: '#0000FF'
  4. white: '#FFFFFF'
  5. gray: '#808080'

yamltotm.py -d dict.yaml scheme.yaml scheme.tmTheme will generate

  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>name</key>
  6. <string>Simple Blue</string>
  7. <key>settings</key>
  8. <array>
  9. <dict>
  10. <key>settings</key>
  11. <dict>
  12. <key>background</key>
  13. <string>#0000FF</string>
  14. <key>foreground</key>
  15. <string>#FFFFFF</string>
  16. </dict>
  17. </dict>
  18. <dict>
  19. <key>name</key>
  20. <string>Comment</string>
  21. <key>scope</key>
  22. <string>comment</string>
  23. <key>settings</key>
  24. <dict>
  25. <key>foreground</key>
  26. <string>#808080</string>
  27. </dict>
  28. </dict>
  29. </array>
  30. <key>uuid</key>
  31. <string>e42124f9-7cf8-4477-ad7b-31a7f1050504</string>
  32. </dict>
  33. </plist>

License

This projected is licensed under the terms of the MIT license.