[Interactive] Adds skip command

This commit is contained in:
Luís Murta 2023-01-29 23:41:42 +00:00
parent f943374ade
commit 2da721d53c
Signed by: satprog
GPG Key ID: 169EF1BBD7049F94

View File

@ -24,7 +24,11 @@ def interactive(manager: Manager):
quit = False
next = True
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":
next = False
quit = True