fix ctrl+space

This commit is contained in:
LenAnderson
2024-04-23 11:05:01 -04:00
parent 86806aa2ac
commit 48127eca28

View File

@@ -888,7 +888,7 @@ export class SlashCommandAutoComplete {
switch (evt.key) { switch (evt.key) {
case ' ': { case ' ': {
if (evt.ctrlKey) { if (evt.ctrlKey) {
if (this.isActive) { if (this.isActive && this.isReplaceable) {
// ctrl-space to toggle details for selected item // ctrl-space to toggle details for selected item
this.toggleDetails(); this.toggleDetails();
} else { } else {