2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-04 04:33:23 +00:00

fix: change default hist path to use hist name instead of config name

This commit is contained in:
TorchedSammy 2022-02-23 21:29:37 -04:00
parent 5e9ea9fead
commit 209abfac77
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

@ -60,8 +60,7 @@ func main() {
defaultHistPath = filepath.Join(confDir, "hilbish", ".hilbish-history")
}
} else {
// else do ~ substitution
defaultHistPath = filepath.Join(strings.Replace(defaultHistDir, "~", homedir, 1), ".hilbishrc.lua")
defaultHistPath = filepath.Join(strings.Replace(defaultHistDir, "~", homedir, 1), ".hilbish-history")
}
helpflag := getopt.BoolLong("help", 'h', "Prints Hilbish flags")
verflag := getopt.BoolLong("version", 'v', "Prints Hilbish version")