Accidentally disabled tab-complete

This commit is contained in:
Tobias P.L Wennberg 2025-01-13 17:12:54 +01:00
parent 35af0423a7
commit 0216b72d65

View File

@ -95,6 +95,8 @@ func input_str(env *environment.Env) string {
case 4: // ^D
input = "exit"
goto loop_exit
case 9: // TAB
input = AutoComplete(input)
case 27: // UPP
if r, _, _ := reader.ReadRune(); r != 91 {
break