mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 23:13:02 +01:00
Merge pull request #2616 from SpaceComet/main
Small update on the website playground
This commit is contained in:
commit
848d5201ae
4 changed files with 5 additions and 4 deletions
|
|
@ -140,7 +140,7 @@ monaco.editor.create(document.getElementById("container"), {
|
||||||
'peekViewEditor.matchHighlightBackground' // Match highlight color in the peek view editor.
|
'peekViewEditor.matchHighlightBackground' // Match highlight color in the peek view editor.
|
||||||
|
|
||||||
/*
|
/*
|
||||||
var colors = require('vs/platform/registry/common/platform').Registry.data['base.contributions.colors'].colorSchema.properties
|
var colors = require('vs/platform/registry/common/platform').Registry.data.get('base.contributions.colors').colorSchema.properties
|
||||||
Object.keys(colors).forEach(function(key) {
|
Object.keys(colors).forEach(function(key) {
|
||||||
var val = colors[key];
|
var val = colors[key];
|
||||||
console.log( '//' + val.description + '\n' + key);
|
console.log( '//' + val.description + '\n' + key);
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Add additonal d.ts files to the JavaScript language service and change.
|
// Add additional d.ts files to the JavaScript language service and change.
|
||||||
// Also change the default compilation options.
|
// Also change the default compilation options.
|
||||||
// The sample below shows how a class Facts is declared and introduced
|
// The sample below shows how a class Facts is declared and introduced
|
||||||
// to the system and how the compiler is told to use ES6 (target=2).
|
// to the system and how the compiler is told to use ES6 (target=2).
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ editor.addAction({
|
||||||
contextMenuOrder: 1.5,
|
contextMenuOrder: 1.5,
|
||||||
|
|
||||||
// Method that will be executed when the action is triggered.
|
// Method that will be executed when the action is triggered.
|
||||||
// @param editor The editor instance is passed in as a convinience
|
// @param editor The editor instance is passed in as a convenience
|
||||||
run: function(ed) {
|
run: function(ed) {
|
||||||
alert("i'm running => " + ed.getPosition());
|
alert("i'm running => " + ed.getPosition());
|
||||||
return null;
|
return null;
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,5 @@ var myBinding = editor.addCommand(monaco.KeyCode.F9, function() {
|
||||||
alert('F9 pressed!');
|
alert('F9 pressed!');
|
||||||
});
|
});
|
||||||
|
|
||||||
// When cleaning up remember to call myBinding.dispose()
|
// You can't dispose `addCommand`
|
||||||
|
// If you need to dispose it you might use `addAction` or `registerCommand`
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue