├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── README.md ├── images ├── lua.png ├── themes.gif ├── toc.png └── wow-icon.png ├── languages ├── grammars │ ├── lua.tmLanguage.json │ └── toc.tmLanguage.json ├── lua-language-configuration.json ├── snippets │ ├── lua.json │ └── toc.json └── toc-language-configuration.json ├── package.json └── themes ├── dark_plus_wow.json ├── light_plus_wow.json ├── monokai_dimmed_wow.json ├── monokai_wow.json ├── theme-defaults ├── fileicons │ ├── images │ │ ├── Document_16x.svg │ │ ├── Document_16x_inverse.svg │ │ ├── FolderOpen_16x.svg │ │ ├── FolderOpen_16x_inverse.svg │ │ ├── Folder_16x.svg │ │ ├── Folder_16x_inverse.svg │ │ ├── RootFolderOpen_16x.svg │ │ ├── RootFolderOpen_16x_inverse.svg │ │ ├── RootFolder_16x.svg │ │ └── RootFolder_16x_inverse.svg │ └── vs_minimal-icon-theme.json ├── package.json ├── package.nls.json └── themes │ ├── dark_defaults.json │ ├── dark_plus.json │ ├── dark_vs.json │ ├── hc_black.json │ ├── hc_black_defaults.json │ ├── light_defaults.json │ ├── light_plus.json │ └── light_vs.json ├── theme-monokai-dimmed ├── .vscodeignore ├── OSSREADME.json ├── package.json ├── package.nls.json └── themes │ └── dimmed-monokai-color-theme.json └── theme-monokai ├── .vscodeignore ├── OSSREADME.json ├── package.json ├── package.nls.json └── themes └── monokai-color-theme.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/README.md -------------------------------------------------------------------------------- /images/lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/images/lua.png -------------------------------------------------------------------------------- /images/themes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/images/themes.gif -------------------------------------------------------------------------------- /images/toc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/images/toc.png -------------------------------------------------------------------------------- /images/wow-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/images/wow-icon.png -------------------------------------------------------------------------------- /languages/grammars/lua.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/languages/grammars/lua.tmLanguage.json -------------------------------------------------------------------------------- /languages/grammars/toc.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/languages/grammars/toc.tmLanguage.json -------------------------------------------------------------------------------- /languages/lua-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/languages/lua-language-configuration.json -------------------------------------------------------------------------------- /languages/snippets/lua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/languages/snippets/lua.json -------------------------------------------------------------------------------- /languages/snippets/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/languages/snippets/toc.json -------------------------------------------------------------------------------- /languages/toc-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/languages/toc-language-configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/package.json -------------------------------------------------------------------------------- /themes/dark_plus_wow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/dark_plus_wow.json -------------------------------------------------------------------------------- /themes/light_plus_wow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/light_plus_wow.json -------------------------------------------------------------------------------- /themes/monokai_dimmed_wow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/monokai_dimmed_wow.json -------------------------------------------------------------------------------- /themes/monokai_wow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/monokai_wow.json -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/Document_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/Document_16x.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/Document_16x_inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/Document_16x_inverse.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/FolderOpen_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/FolderOpen_16x.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/FolderOpen_16x_inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/FolderOpen_16x_inverse.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/Folder_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/Folder_16x.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/Folder_16x_inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/Folder_16x_inverse.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/RootFolderOpen_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/RootFolderOpen_16x.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/RootFolderOpen_16x_inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/RootFolderOpen_16x_inverse.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/RootFolder_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/RootFolder_16x.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/images/RootFolder_16x_inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/images/RootFolder_16x_inverse.svg -------------------------------------------------------------------------------- /themes/theme-defaults/fileicons/vs_minimal-icon-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/fileicons/vs_minimal-icon-theme.json -------------------------------------------------------------------------------- /themes/theme-defaults/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/package.json -------------------------------------------------------------------------------- /themes/theme-defaults/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/package.nls.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/dark_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/themes/dark_defaults.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/dark_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/themes/dark_plus.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/dark_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/themes/dark_vs.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/hc_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/themes/hc_black.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/hc_black_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/themes/hc_black_defaults.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/light_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/themes/light_defaults.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/light_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/themes/light_plus.json -------------------------------------------------------------------------------- /themes/theme-defaults/themes/light_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-defaults/themes/light_vs.json -------------------------------------------------------------------------------- /themes/theme-monokai-dimmed/.vscodeignore: -------------------------------------------------------------------------------- 1 | OSSREADME.json -------------------------------------------------------------------------------- /themes/theme-monokai-dimmed/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-monokai-dimmed/OSSREADME.json -------------------------------------------------------------------------------- /themes/theme-monokai-dimmed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-monokai-dimmed/package.json -------------------------------------------------------------------------------- /themes/theme-monokai-dimmed/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-monokai-dimmed/package.nls.json -------------------------------------------------------------------------------- /themes/theme-monokai-dimmed/themes/dimmed-monokai-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-monokai-dimmed/themes/dimmed-monokai-color-theme.json -------------------------------------------------------------------------------- /themes/theme-monokai/.vscodeignore: -------------------------------------------------------------------------------- 1 | OSSREADME.json -------------------------------------------------------------------------------- /themes/theme-monokai/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-monokai/OSSREADME.json -------------------------------------------------------------------------------- /themes/theme-monokai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-monokai/package.json -------------------------------------------------------------------------------- /themes/theme-monokai/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-monokai/package.nls.json -------------------------------------------------------------------------------- /themes/theme-monokai/themes/monokai-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/vscode-wow-bundle/HEAD/themes/theme-monokai/themes/monokai-color-theme.json --------------------------------------------------------------------------------