1
0
mirror of https://github.com/salexdv/bsl_console.git synced 2024-11-28 08:48:48 +02:00

Merge branch 'develop' of https://github.com/salexdv/bsl_console into develop

This commit is contained in:
Alexander Shkuraev 2021-09-04 09:35:12 +03:00
commit be59058e05

View File

@ -528,8 +528,12 @@ define([], function () {
provideDocumentFormattingEdits: () => {}
},
codeLenses: {
onDidChange: () => {},
provider: () => {},
onDidChange: function(e) {
editor.updateCodeLens = e;
},
provider: function (model, token) {
return bslHelper.provideCodeLenses(model, token);
},
resolver: () => {}
},
colorProvider: {
@ -590,8 +594,12 @@ define([], function () {
provideDocumentFormattingEdits: () => {}
},
codeLenses: {
onDidChange: () => {},
provider: () => {},
onDidChange: function(e) {
editor.updateCodeLens = e;
},
provider: function (model, token) {
return bslHelper.provideCodeLenses(model, token);
},
resolver: () => {}
},
colorProvider: {