We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 081c0e1 commit e0c3c61Copy full SHA for e0c3c61
src/ui/suggestionManager.ts
@@ -50,6 +50,9 @@ export class SuggestionManager {
50
51
private async _loadSuggestions(): Promise<void> {
52
const commandText = this.#term.getCommandState().commandText;
53
+ if (!commandText) {
54
+ this.#command = "";
55
+ }
56
if (!commandText || this.#hideSuggestions) {
57
this.#suggestBlob = undefined;
58
this.#activeSuggestionIdx = 0;
0 commit comments