fix arrow navigation

This commit is contained in:
LenAnderson
2024-04-23 11:05:15 -04:00
parent 48127eca28
commit 6ec508612e

View File

@@ -918,7 +918,7 @@ export class SlashCommandAutoComplete {
}); });
if (this.selectionStart != this.textarea.selectionStart) { if (this.selectionStart != this.textarea.selectionStart) {
this.selectionStart = this.textarea.selectionStart; this.selectionStart = this.textarea.selectionStart;
this.show(oldText != this.textarea.value); this.show(this.isReplaceable || oldText != this.textarea.value);
} }
} }
} }