From de5ea9f6bd32dcdc5509a7f21b941b4f194a90b5 Mon Sep 17 00:00:00 2001 From: Markus Braun Date: Thu, 24 Jan 2008 13:39:05 +0000 Subject: [PATCH] New commands ":GPGRecipients" and ":GPGOptions" Aliases for ":GPGEditRecipients" and ":GPGEditOptions" for better tab completion. --- plugin/gnupg.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin/gnupg.vim b/plugin/gnupg.vim index bcc94a6..3503111 100644 --- a/plugin/gnupg.vim +++ b/plugin/gnupg.vim @@ -23,6 +23,7 @@ " " Commands: " +" :GPGRecipients " :GPGEditRecipients " Opens a scratch buffer to change the list of recipients. Recipients that " are unknown (not in your public key) are highlighted and have @@ -31,6 +32,7 @@ " :GPGViewRecipients " Prints the list of recipients. " +" :GPGOptions " :GPGEditOptions " Opens a scratch buffer to change the options for encryption (symmetric, " asymmetric, signing). Closing the buffer makes the changes permanent. @@ -982,8 +984,10 @@ endf " Section: Command definitions {{{1 com! GPGViewRecipients call s:GPGViewRecipients() +com! GPGRecipients call s:GPGEditRecipients() com! GPGEditRecipients call s:GPGEditRecipients() com! GPGViewOptions call s:GPGViewOptions() +com! GPGOptions call s:GPGEditOptions() com! GPGEditOptions call s:GPGEditOptions() " vim600: foldmethod=marker:foldlevel=0