summaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-20 15:43:24 -0500
committerpommicket <pommicket@gmail.com>2022-12-20 15:43:24 -0500
commitd3375f02cfed99ed40c28631e62654af23817729 (patch)
tree575072b13497c3e2f6ba73f3d9feb90214ad6c70 /command.c
parent9dc4d70511862004661cd5b0c02adc500c35f42e (diff)
start completion requests
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c
index ce447ed..b6f3195 100644
--- a/command.c
+++ b/command.c
@@ -377,7 +377,7 @@ void command_execute(Ted *ted, Command c, i64 argument) {
// dismiss error box
*ted->error_shown = '\0';
} else if (ted->autocomplete) {
- ted->autocomplete = false;
+ autocomplete_close(ted);
} else if (ted->menu) {
menu_escape(ted);
} else {