mirror of https://github.com/Hilbis/Hilbish
29 lines
521 B
Go
29 lines
521 B
Go
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 = "> "
|
|
)
|
|
|
|
// Version info
|
|
var (
|
|
ver = "v2.0.1"
|
|
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
|
|
initialized bool
|
|
)
|
|
|