Commit Graph

1 Commits

Author SHA1 Message Date
Jean Guyomarc'h 50932caff2 syntax: add support for textual EET representation
Eet can be manipulated via a textual representation, which looks like the
following:

  group "s_config" struct {
      value "version" uint: 0;
      value "font_size" uint: 12;
      value "font_name" string: "Mono";
      group "bg_color" struct {
          group "s_config_color" struct {
              value "r" uchar: 0;
              value "g" uchar: 0;
              value "b" uchar: 0;
              value "a" uchar: 255;
          }
      }
      value "use_bg_color" uchar: 0;
      value "mute_bell" uchar: 0;
  }

These changes allow vim to properly colorize textual eet files. The associated
file extension is ".eet".
2018-08-03 20:13:38 +02:00