docs: less spacing for help text
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2023-12-29 10:31:32 +01:00
parent 3eda377ca3
commit bceecfa0ae
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 9 additions and 9 deletions

View File

@ -6,15 +6,15 @@ import (
tea "github.com/charmbracelet/bubbletea"
)
const cmdHelp = `/acn on | Turn on the Tor ACN
/acn off | Turn off the Tor ACN
/clear | Clear the screen
/help | Show this help
/profile create <name> <password> <password> | Create a new profile
/profile info | Show profile information
/profile unlock <password> | Unlock profile(s)
/start | Show getting started guide
/quit | Quit the program`
const cmdHelp = `/acn on | Turn on the Tor ACN
/acn off | Turn off the Tor ACN
/clear | Clear the screen
/help | Show this help
/profile create <name> <password> <password> | Create a new profile
/profile info | Show profile information
/profile unlock <password> | Unlock profile(s)
/start | Show getting started guide
/quit | Quit the program`
func isHelpCmd(cmds []string) bool {
return cmds[0] == "help"