Hilbish/vars.go

29 lines
525 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 (
2022-10-14 23:16:24 +00:00
ver = "v2.0.0-rc1"
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
)