├── .eslintrc.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── completion.gif ├── diagnostics.gif ├── download.png ├── general.gif ├── goto-definition.gif ├── goto-symbols.gif ├── hover.gif ├── icon.png └── redmenu.gif ├── package.json ├── red.configuration.json ├── src ├── RedConfiguration.ts ├── commandsProvider.ts ├── extension.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── syntaxes └── Red.tmLanguage.json ├── tsconfig.json ├── tslint.json └── vsc-extension-quickstart.md /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/README.md -------------------------------------------------------------------------------- /images/completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/images/completion.gif -------------------------------------------------------------------------------- /images/diagnostics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/images/diagnostics.gif -------------------------------------------------------------------------------- /images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/images/download.png -------------------------------------------------------------------------------- /images/general.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/images/general.gif -------------------------------------------------------------------------------- /images/goto-definition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/images/goto-definition.gif -------------------------------------------------------------------------------- /images/goto-symbols.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/images/goto-symbols.gif -------------------------------------------------------------------------------- /images/hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/images/hover.gif -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/redmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/images/redmenu.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/package.json -------------------------------------------------------------------------------- /red.configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/red.configuration.json -------------------------------------------------------------------------------- /src/RedConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/src/RedConfiguration.ts -------------------------------------------------------------------------------- /src/commandsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/src/commandsProvider.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /syntaxes/Red.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/syntaxes/Red.tmLanguage.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/tslint.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red/VScode-extension/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------