2021-06-08 23:16:37 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
// String vars that are free to be changed at compile time
|
|
|
|
var (
|
2021-06-15 23:33:51 +00:00
|
|
|
version = "v0.5.1"
|
2021-06-10 00:33:30 +00:00
|
|
|
defaultConfDir = "" // ~ will be substituted for home, path for user's default config
|
2021-06-08 23:16:37 +00:00
|
|
|
|
|
|
|
prompt string // Prompt will always get changed anyway
|
|
|
|
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
|
|
|
|
)
|
|
|
|
|