feat: add support for shell builtins to command completion

This commit is contained in:
2026-06-16 18:41:56 +02:00
parent dea5d1ca59
commit 6d6a41e366
4 changed files with 34 additions and 1 deletions
+2
View File
@@ -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);