Hilbish/vars.go

29 lines
521 B
Go
Raw Normal View History

package main
// String vars that are free to be changed at compile time
var (
defaultHistDir = ""
commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"
prompt string
multilinePrompt = "> "
)
2022-05-16 23:36:34 +00:00
// Version info
var (
2023-01-07 18:59:55 +00:00
ver = "v2.1.0"
2022-05-16 23:36:34 +00:00
releaseName = "Hibiscus"
gitCommit string
gitBranch string
)
// Flags
var (
running bool // Is a command currently running
interactive bool
login bool // Are we the login shell?
noexecute bool // Should we run Lua or only report syntax errors
2022-03-06 21:20:41 +00:00
initialized bool
)