mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +00:00
editor/sagas: disable code completion trigger on space
This gets in the way when typing comments and often results in accepting a completion that was not intended. Fixes: https://github.com/pybricks/support/issues/894
This commit is contained in:
+1
-1
@@ -606,7 +606,7 @@ function* runJedi(): Generator {
|
||||
const subscription = monaco.languages.registerCompletionItemProvider(
|
||||
pybricksMicroPythonId,
|
||||
{
|
||||
triggerCharacters: ['.', ' '],
|
||||
triggerCharacters: ['.'],
|
||||
provideCompletionItems(
|
||||
model,
|
||||
position,
|
||||
|
||||
Reference in New Issue
Block a user