diff --git a/clipboard.py b/clipboard.py index 1a95796..7423443 100644 --- a/clipboard.py +++ b/clipboard.py @@ -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" ), } diff --git a/latest.py b/latest.py index fdebc6d..9e23690 100644 --- a/latest.py +++ b/latest.py @@ -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", diff --git a/notification.py b/notification.py index ec94537..b0e926c 100644 --- a/notification.py +++ b/notification.py @@ -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()