├── .gitignore ├── .vscodeignore ├── LICENSE ├── README.md ├── language-configuration.json ├── package.json ├── release ├── screenshotst3.png └── syntaxes ├── comments.tmPreferences └── i3.tmLanguage /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | # Standard 2 | .gitignore 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcasella/i3wm-syntax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcasella/i3wm-syntax/HEAD/README.md -------------------------------------------------------------------------------- /language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcasella/i3wm-syntax/HEAD/language-configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcasella/i3wm-syntax/HEAD/package.json -------------------------------------------------------------------------------- /release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcasella/i3wm-syntax/HEAD/release -------------------------------------------------------------------------------- /screenshotst3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcasella/i3wm-syntax/HEAD/screenshotst3.png -------------------------------------------------------------------------------- /syntaxes/comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcasella/i3wm-syntax/HEAD/syntaxes/comments.tmPreferences -------------------------------------------------------------------------------- /syntaxes/i3.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcasella/i3wm-syntax/HEAD/syntaxes/i3.tmLanguage --------------------------------------------------------------------------------