feat: add cwd file matching to shell tab completion

This commit is contained in:
2026-06-17 07:58:41 +02:00
parent 6d6a41e366
commit 36b03f070d
4 changed files with 86 additions and 5 deletions
+1 -1
View File
@@ -439,7 +439,7 @@ extern "C" void _start() {
if (pos == 0) continue;
char* table[128] = { };
int n = get_completions(line, table, 128);
int n = get_completions(line, table, 128, cwd, current_drive);
montauk::print("\n");
for (int i = 0; i < n; i++) {