]> njoseph.me Git - nimcoon.git/blobdiff - src/nimcoon.nim
"all" plays only visible results
[nimcoon.git] / src / nimcoon.nim
index a0bb93deb2ed9ac8a17dad9c5e440abf24255873..0624bad087bd69f6febc0f91b24082cf1445a79f 100644 (file)
@@ -32,7 +32,7 @@ proc parseArguments(): CommandLineOptions =
 
 proc isValidOptions*(options: Options): bool =
   # Check for invalid combinations of options
-  var invalidCombinations = [("musicOnly", "fullScreen")]
+  var invalidCombinations = [("musicOnly", "fullScreen"), ("download", "fullScreen")]
   for combination in invalidCombinations:
     if options[combination[0]] and options[combination[1]]:
      stderr.writeLine fmt"Incompatible options provided: {combination[0]} and {combination[1]}"
@@ -85,7 +85,7 @@ proc main() =
     let userInput = getUserInput()
 
     if userInput == "all":
-      for number in 0..(len(searchResults)):
+      for number in 0..(limit-1): # Nim decided to deviate from Python ranges here
         # TODO `spawn` this?
         handleUserInput(number)