├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── README_DEV.md ├── images └── worlds-logo.png ├── language-configuration.json ├── package.json ├── sample-files ├── quote-test.verse ├── sample.digest.verse └── sample.verse ├── syntaxes └── verse.tmLanguage.json ├── test.verse └── vsc-extension-quickstart.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/README.md -------------------------------------------------------------------------------- /README_DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/README_DEV.md -------------------------------------------------------------------------------- /images/worlds-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/images/worlds-logo.png -------------------------------------------------------------------------------- /language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/language-configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/package.json -------------------------------------------------------------------------------- /sample-files/quote-test.verse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/sample-files/quote-test.verse -------------------------------------------------------------------------------- /sample-files/sample.digest.verse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/sample-files/sample.digest.verse -------------------------------------------------------------------------------- /sample-files/sample.verse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/sample-files/sample.verse -------------------------------------------------------------------------------- /syntaxes/verse.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/syntaxes/verse.tmLanguage.json -------------------------------------------------------------------------------- /test.verse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/test.verse -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorldsOrg/verse-extension/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------