]> git.r.bdr.sh - rbdr/lyricli/commitdiff
Use single word long options
authorBen Beltran <redacted>
Mon, 13 May 2019 19:54:42 +0000 (21:54 +0200)
committerBen Beltran <redacted>
Mon, 13 May 2019 19:54:42 +0000 (21:54 +0200)
README.md
Sources/lyricli/lyricli_command.swift

index 5e7c9951e48d0f52e7cb60bf13ed5e0140735366..5614f5d4c58fdcba70bd302af7963c71db311563 100644 (file)
--- a/README.md
+++ b/README.md
@@ -28,11 +28,11 @@ song and artist names before the lyrics.
 
 In order to configure
 
-* `lrc -l` or `lrc --list-sources` lists the available sources. Enabled
+* `lrc -l` or `lrc --list` lists the available sources. Enabled
   sourcess will have a `*`
 * `lrc -e` or `lrc --enable <source>` enables a source
 * `lrc -d` or `lrc --disable <source>` disables a source
-* `lrc -r` or `lrc --reset-source <source>` resets the configuration for
+* `lrc -r` or `lrc --reset <source>` resets the configuration for
   a source and disables it.
 * `lrc -v` or `lrc --version` prints the version
 * `lrc -h` or `lrc --help` display built-in help
index 28ad44ae8c60456e931921293a5025b5fb01dc24..88f9c7b01bc01f8e65d55d1ea599c07c7d548196 100644 (file)
@@ -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")