|
8 år sedan | |
---|---|---|
.vscode | f661c5f826 Format sources | 8 år sedan |
src | 0281b3f960 removed date and REM | 8 år sedan |
test | 70ffd3f0c2 added support for Small Basic | 8 år sedan |
.gitignore | c4177ec697 Initial release | 9 år sedan |
.npmignore | df620a6670 Include src as a part of npm package | 8 år sedan |
.travis.yml | 36cd3492ec Add travis builds | 8 år sedan |
LICENSE.md | c4177ec697 Initial release | 9 år sedan |
README.md | ecfce903c4 Website - Jade should be Pug. Fixes Microsoft/monaco-editor#13 | 8 år sedan |
ThirdPartyNotices.txt | c4177ec697 Initial release | 9 år sedan |
gulpfile.js | 70ffd3f0c2 added support for Small Basic | 8 år sedan |
package.json | fbdcb70601 0.8.0 | 8 år sedan |
tsconfig.json | 0adb5b8c74 Adopt latest monaco-editor-core, adopt TS 2.0 for compilation | 8 år sedan |
Colorization and configuration supports for multiple languages for the Monaco Editor:
Also css
dialects:
Please file issues concerning monaco-languages
in the monaco-editor
-repository.
This npm module is bundled and distributed in the monaco-editor npm module.
npm install .
npm run watch
npm run test
npm run prepublish
$/src/myLang.ts
$/test/myLang.test.ts
$> npm run watch
edit $/src/monaco.contribution.ts
and register your new language:
registerLanguage({
id: 'sql',
extensions: [ '.sql' ],
aliases: [ 'SQL' ],
module: './sql'
});
edit $/test/all.js
and load your new language while testing
'out/test/sql.test',
edit $/gulpfile.js
and ship your new language
bundleOne('src/sql'),
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.