diff options
author | pommicket <pommicket@gmail.com> | 2022-12-20 15:43:24 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-20 15:43:24 -0500 |
commit | d3375f02cfed99ed40c28631e62654af23817729 (patch) | |
tree | 575072b13497c3e2f6ba73f3d9feb90214ad6c70 /command.c | |
parent | 9dc4d70511862004661cd5b0c02adc500c35f42e (diff) |
start completion requests
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |