language-lua-wow

Add syntax highlighting for the World of Warcraft API in Lua files in Atom.

nebularg

10,812

10

0.2.0

Unlicense

GitHub

language-lua-wow

Add syntax highlighting for the World of Warcraft API in Lua files in Atom.

Example screenshot using the One Dark theme

This package provides language-lua and adds the following scopes:

To change the syntax highlighting for these scopes, you need to add styles to the style.less file in your ~/.atom directory.

You can open this file in an editor from the File > Stylesheet... menu.

For example, you could add the following rule to your ~/.atom/styles.less file to tweak the color of WoW functions:

atom-text-editor::shadow {
  .support.function.wow {
    &.api, &.widget {
      color: darken(@syntax-color-function, 15%);
    }
    &.framexml {
      color: lighten(@syntax-color-function, 10%);
    }
  }
}

Themes probably have a set of variables defined that you can use, but of course you can always do your own thing.

Credit

Originally created from the World of Warcraft Textmate Bundle.

Keywords are updated from Townlong Yak, Wowpedia and World of Warcraft Programming.

Lua syntax, snippets, and options are from language-lua by FireZenk.