Don't provide default short flags
This commit is contained in:
parent
8ba852a849
commit
29164805fb
3 changed files with 4 additions and 10 deletions
|
@ -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"
|
||||
),
|
||||
}
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue