|
před 8 roky | |
---|---|---|
.vscode | f661c5f826 Format sources | před 8 roky |
src | 0281b3f960 removed date and REM | před 8 roky |
test | 70ffd3f0c2 added support for Small Basic | před 8 roky |
.gitignore | c4177ec697 Initial release | před 9 roky |
.npmignore | df620a6670 Include src as a part of npm package | před 8 roky |
.travis.yml | 36cd3492ec Add travis builds | před 8 roky |
LICENSE.md | c4177ec697 Initial release | před 9 roky |
README.md | ecfce903c4 Website - Jade should be Pug. Fixes Microsoft/monaco-editor#13 | před 8 roky |
ThirdPartyNotices.txt | c4177ec697 Initial release | před 9 roky |
gulpfile.js | 70ffd3f0c2 added support for Small Basic | před 8 roky |
package.json | fbdcb70601 0.8.0 | před 8 roky |
tsconfig.json | 0adb5b8c74 Adopt latest monaco-editor-core, adopt TS 2.0 for compilation | před 8 roky |
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.