Merge pull request #79 from laverya/fix-misspell

fix typos identified by 'misspell' tool
This commit is contained in:
Liam Galvin 2018-11-28 06:18:38 +00:00 committed by GitHub
commit 24a7c629e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ func getConfig() *config.Config {
flag.BoolVar(&showVersion, "version", showVersion, "Output version information")
ignore := false
flag.BoolVar(&ignore, "ignore-config", ignore, "Ignore user config files and use defauls")
flag.BoolVar(&ignore, "ignore-config", ignore, "Ignore user config files and use defaults")
if ignore {
return &config.DefaultConfig
}

View File

@ -40,7 +40,7 @@ func main() {
shellStr = conf.Shell
}
os.Setenv("TERM", "xterm-256color") // contraversial! easier than installing terminfo everywhere, but obviously going to be slightly different to xterm functionality, so we'll see...
os.Setenv("TERM", "xterm-256color") // controversial! easier than installing terminfo everywhere, but obviously going to be slightly different to xterm functionality, so we'll see...
os.Setenv("COLORTERM", "truecolor")
shell := exec.Command(shellStr)