2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-02 19:53:23 +00:00

style: formatting

This commit is contained in:
sammy 2021-04-20 17:52:01 -04:00
parent 428db24831
commit 08c56a54ca
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5

View File

@ -40,15 +40,15 @@ func main() {
parser := argparse.NewParser("hilbish", "A shell for lua and flower lovers")
verflag := parser.Flag("v", "version", &argparse.Options{
Required: false,
Help: "Prints Hilbish version",
Help: "Prints Hilbish version",
})
setshflag := parser.Flag("S", "set-shell-env", &argparse.Options{
Required: false,
Help: "Sets $SHELL to Hilbish's executed path",
Help: "Sets $SHELL to Hilbish's executed path",
})
configflag := parser.String("C", "config", &argparse.Options{
Required: false,
Help: "Sets the path to Hilbish's config",
Help: "Sets the path to Hilbish's config",
Default: defaultconfpath,
})
@ -164,7 +164,7 @@ func fmtPrompt() string {
}
for i, v := range args {
if i%2 == 0 {
if i % 2 == 0 {
args[i] = "%" + v
}
}