diff options
| author | Albert Cervin <albert@acervin.com> | 2024-04-03 11:43:49 +0200 |
|---|---|---|
| committer | Albert Cervin <albert@acervin.com> | 2024-04-03 11:43:49 +0200 |
| commit | 1ed6000dd2a995bcd67e99b1c89aa1e2c4a6f1e6 (patch) | |
| tree | dff73302ddb932b1355df8cff4fcb2557a748a8e /src/main/main.c | |
| parent | 80e6ab5ec9fdb0f4a3b3fa35e4ea502a54b85e1a (diff) | |
| download | dged-1ed6000dd2a995bcd67e99b1c89aa1e2c4a6f1e6.tar.gz dged-1ed6000dd2a995bcd67e99b1c89aa1e2c4a6f1e6.tar.xz dged-1ed6000dd2a995bcd67e99b1c89aa1e2c4a6f1e6.zip | |
Add completion to execute
Completes on the command, not on following arguments if written
directly at the prompt.
Diffstat (limited to 'src/main/main.c')
| -rw-r--r-- | src/main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/main.c b/src/main/main.c index 6048b63..a020b9f 100644 --- a/src/main/main.c +++ b/src/main/main.c @@ -310,7 +310,7 @@ int main(int argc, char *argv[]) { struct keymap *current_keymap = NULL; init_bindings(); - init_completion(&buflist); + init_completion(&buflist, &commands); timers_init(); float frame_time = 0.f; |
