mirror of
https://github.com/salexdv/bsl_console.git
synced 2024-11-24 08:33:29 +02:00
Update editor.js
Асинхронное выполнение setOption() не совместимо со старым API и рождает много скрытых проблем https://github.com/salexdv/bsl_console/issues/297
This commit is contained in:
parent
524912a991
commit
ddc4f7bf6d
@ -1121,7 +1121,7 @@ define(['bslGlobals', 'bslMetadata', 'snippets', 'bsl_language', 'vs/editor/edit
|
|||||||
|
|
||||||
setOption = function (optionName, optionValue) {
|
setOption = function (optionName, optionValue) {
|
||||||
|
|
||||||
setTimeout(() => {
|
// setTimeout(() => { // Асинхронное выполнение не совместимо со старым API и рождает много скрытых проблем https://github.com/salexdv/bsl_console/issues/297
|
||||||
|
|
||||||
editor[optionName] = optionValue;
|
editor[optionName] = optionValue;
|
||||||
editor_options[optionName] = optionValue;
|
editor_options[optionName] = optionValue;
|
||||||
@ -1138,7 +1138,7 @@ define(['bslGlobals', 'bslMetadata', 'snippets', 'bsl_language', 'vs/editor/edit
|
|||||||
if (optionName == 'generateSuggestActivationEvent')
|
if (optionName == 'generateSuggestActivationEvent')
|
||||||
startStopSuggestActivationObserver();
|
startStopSuggestActivationObserver();
|
||||||
|
|
||||||
}, 10);
|
// }, 10);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user