code-server
Version:
Run VS Code on a remote server.
20 lines (14 loc) • 722 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
;
var updateGrammar = require('vscode-grammar-updater');
function adaptLess(grammar) {
grammar.name = 'Less';
grammar.scopeName = 'source.css.less';
}
async function updateGrammars() {
await updateGrammar.update('radium-v/Better-Less', 'Syntaxes/Better%20Less.tmLanguage', './syntaxes/less.tmLanguage.json', adaptLess, 'master');
}
updateGrammars();