Don't provide default short flags

This commit is contained in:
Gnarwhal 2024-09-09 05:46:26 +00:00
parent 8ba852a849
commit 29164805fb
Signed by: Gnarwhal
GPG key ID: 0989A73D8C421174
3 changed files with 4 additions and 10 deletions

View file

@ -26,13 +26,11 @@ activate = {
}
args = {
"from_clipboard": Flag(
short="p",
long="paste",
name="paste",
help="Upload the contents of the clipboard"
),
"to_clipboard": Flag(
short="c",
long="copy",
name="copy",
help="Copy the resultant URL to the clipboard"
),
}

View file

@ -28,8 +28,7 @@ config = {
}
args = {
"directory": Argument(
short="l",
long="latest",
name="latest",
nargs="?",
const=Flag,
help="Upload the latest file from a directory",

View file

@ -21,10 +21,7 @@ plugin_type = "feedback"
activate = { "notify" }
args = {
"notify": Flag(
short="n",
help="Send a desktop notification"
)
"notify": Flag(help="Send a desktop notification"),
}
_notifier = DesktopNotifierSync()