Hilbish/vars.go

22 lines
438 B
Go
Raw Normal View History

package main
// String vars that are free to be changed at compile time
var (
2022-04-14 00:50:29 +00:00
version = "v2.0.0"
defaultHistDir = ""
commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"
prompt string
multilinePrompt = "> "
)
// 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
)