[Interactive] Adds skip command
This commit is contained in:
parent
f943374ade
commit
2da721d53c
@ -24,7 +24,11 @@ def interactive(manager: Manager):
|
|||||||
quit = False
|
quit = False
|
||||||
next = True
|
next = True
|
||||||
while next:
|
while next:
|
||||||
match (input("(<category>/split/tag/note/quit): ")):
|
match (input("(<category>/split/tag/note/skip/quit): ")):
|
||||||
|
case "skip":
|
||||||
|
next = False
|
||||||
|
continue
|
||||||
|
|
||||||
case "quit" | "exit":
|
case "quit" | "exit":
|
||||||
next = False
|
next = False
|
||||||
quit = True
|
quit = True
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user