feat: add support for shell builtins to command completion
This commit is contained in:
@@ -436,6 +436,8 @@ extern "C" void _start() {
|
||||
if (ev.scancode == SC_TAB) {
|
||||
line[pos] = '\0';
|
||||
|
||||
if (pos == 0) continue;
|
||||
|
||||
char* table[128] = { };
|
||||
int n = get_completions(line, table, 128);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user