From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20302 invoked by alias); 20 Oct 2017 10:26:09 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: List-Unsubscribe: X-Seq: 41943 Received: (qmail 23831 invoked by uid 1010); 20 Oct 2017 10:26:09 -0000 X-Qmail-Scanner-Diagnostics: from smtprelay01.ispgateway.de by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(80.67.31.39):SA:0(-2.6/5.0):. Processed in 2.684958 secs); 20 Oct 2017 10:26:09 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW, SPF_HELO_PASS autolearn=ham autolearn_force=no version=3.4.1 X-Envelope-From: ft@bewatermyfriend.org X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | From: Frank Terbeck To: zsh-workers@zsh.org Subject: [PATCH] Completion: add --clean for vim Date: Fri, 20 Oct 2017 11:08:19 +0200 Message-Id: <20171020090819.29541-1-ft@bewatermyfriend.org> X-Mailer: git-send-email 2.15.0.rc0 X-Df-Sender: NDMwNDQ0 From: Christian Brabandt Vim since patchlevel 8.0.0716 includes the --clean argument for starting in a clean mode (only loading defaults.vim and in non-cp mode). --- Received via Debian's BTS. Completion/Unix/Command/_vim | 1 + 1 file changed, 1 insertion(+) diff --git a/Completion/Unix/Command/_vim b/Completion/Unix/Command/_vim index f10d54ade..c2612ebc2 100644 --- a/Completion/Unix/Command/_vim +++ b/Completion/Unix/Command/_vim @@ -74,6 +74,7 @@ arguments=( '(- *)--version[print version information and exit]' '(* -q)-t[edit file where tag is defined]:tag:_complete_tag' '(-t -q)*:file:_vim_files' + '--clean[start with defaults in non-compatible mode]' ) [[ $service != *g* ]] && arguments+='-g[start with GUI]' [[ $service != r* ]] && arguments+='-Z[restricted mode]' -- 2.15.0.rc0