diff options
Diffstat (limited to 'Sources')
| -rw-r--r-- | Sources/lyricli/lyricli_command.swift | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Sources/lyricli/lyricli_command.swift b/Sources/lyricli/lyricli_command.swift index 28ad44a..88f9c7b 100644 --- a/Sources/lyricli/lyricli_command.swift +++ b/Sources/lyricli/lyricli_command.swift @@ -6,19 +6,19 @@ class LyricliCommand: Command { // Flags let version = Flag(short: "v", long: "version", help: "Prints the version.") let showTitle = Flag(short: "t", long: "title", help: "Shows title of song if true") - let listSources = Flag(short: "l", long: "listSources", help: "Lists all sources") + let listSources = Flag(short: "l", long: "list", help: "Lists all sources") // Named Arguments let enableSource = Argument<String>(name: "source", - kind: .named(short: "e", long: "enableSource"), + kind: .named(short: "e", long: "enable"), optional: true, help: "Enables a source") let disableSource = Argument<String>(name: "source", - kind: .named(short: "d", long: "disableSource"), + kind: .named(short: "d", long: "disable"), optional: true, help: "Disables a source") let resetSource = Argument<String>(name: "source", - kind: .named(short: "r", long: "resetSource"), + kind: .named(short: "r", long: "reset"), optional: true, help: "Resets a source") |