diff options
author | pommicket <pommicket@gmail.com> | 2022-12-25 15:58:30 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-25 15:58:30 -0500 |
commit | 9ee67ef5097451705b4ae9cb28895f726843cdf3 (patch) | |
tree | 6342192680691acb9151938c06f699e876c17819 /command.c | |
parent | f67094bce357a76334a717ed669b377d3b93d18e (diff) |
handle complete vs incomplete lists
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -287,7 +287,7 @@ void command_execute(Ted *ted, Command c, i64 argument) { if (ted->autocomplete.open) autocomplete_next(ted); else - autocomplete_open(ted, 0); + autocomplete_open(ted, TRIGGER_INVOKED); break; case CMD_AUTOCOMPLETE_BACK: if (ted->autocomplete.open) |