fix: check if interactive *and* input starts with space to determine if to add to history

windows-fixes
TorchedSammy 2022-03-13 12:51:27 -04:00
parent dc53eef829
commit b05cb30ed7
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ func splitInput(input string) ([]string, string) {
func cmdFinish(code uint8, cmdstr, oldInput string) {
// if input has space at the beginning, dont put in history
if !strings.HasPrefix(oldInput, " ") || interactive {
if interactive && !strings.HasPrefix(oldInput, " ") {
handleHistory(strings.TrimSpace(oldInput))
}
util.SetField(l, hshMod, "exitCode", lua.LNumber(code), "Exit code of last exected command")