We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe1cdf commit 09d1057Copy full SHA for 09d1057
src/components/editor/use-at-autocompleter.js
@@ -52,8 +52,7 @@ function addAtSymbolCompleter( completers = [] ) {
52
// Return empty array since we're not providing actual completion options
53
return [];
54
},
55
- getOptionLabel: () => '',
56
- getOptionCompletion: () => '@',
+ isDebounced: true,
57
};
58
59
return [ ...completers, atSymbolCompleter ];
src/components/editor/use-plus-autocompleter.js
@@ -46,8 +46,7 @@ function addPlusSymbolCompleter( completers = [] ) {
46
47
48
49
50
- getOptionCompletion: () => '+',
51
return [ ...completers, plusSymbolCompleter ];
0 commit comments