diff options
author | June McEnroe <june@causal.agency> | 2020-02-07 21:30:25 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-07 21:39:56 -0500 |
commit | fe5fd897052abd1909d1536056936a0417666459 (patch) | |
tree | e253d8786b633a0002b156b1da1d9d6eae320f6e /ui.c | |
parent | Use define_key for meta keys (diff) | |
download | catgirl-fe5fd897052abd1909d1536056936a0417666459.tar.gz catgirl-fe5fd897052abd1909d1536056936a0417666459.zip |
Populate completion with commands
Diffstat (limited to 'ui.c')
-rw-r--r-- | ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c index 147381e..5a8f155 100644 --- a/ui.c +++ b/ui.c @@ -596,6 +596,7 @@ static void keyCtrl(wchar_t ch) { break; case L'A': edit(id, EditHome, 0); break; case L'E': edit(id, EditEnd, 0); break; case L'H': edit(id, EditErase, 0); + break; case L'I': edit(id, EditComplete, 0); break; case L'J': edit(id, EditEnter, 0); break; case L'L': clearok(curscr, true); break; case L'U': edit(id, EditKill, 0); |