From c29af2e56dfc8e4748a9f6509856a88afd715ab7 Mon Sep 17 00:00:00 2001 From: Bob Hiestand Date: Sat, 2 Feb 2008 00:11:26 +0000 Subject: [PATCH] Added VCSRemove as alias for VCSDelete. git-svn-id: https://vcscommand.googlecode.com/svn/trunk@60 e7462f97-9721-0410-a4e7-d7c98e439057 --- plugin/vcscommand.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugin/vcscommand.vim b/plugin/vcscommand.vim index 9303bbb..ecca261 100644 --- a/plugin/vcscommand.vim +++ b/plugin/vcscommand.vim @@ -97,6 +97,8 @@ " VCSLog Displays the version history of the current file in a new " scratch buffer. " +" VCSRemove Alias for 'VCSDelete'. +" " VCSRevert Replaces the modified version of the current file with the " most recent version from the repository. " @@ -1084,6 +1086,7 @@ com! -nargs=0 -bang VCSGotoOriginal call s:VCSGotoOriginal() com! -nargs=* VCSInfo call s:ExecuteVCSCommand('Info', [], 1) com! -nargs=* VCSLock call s:MarkOrigBufferForSetup(s:ExecuteVCSCommand('Lock', [], 1)) com! -nargs=* VCSLog call s:ExecuteVCSCommand('Log', [], 1) +com! -nargs=* VCSRemove call s:ExecuteVCSCommand('Delete', [], 1) com! -nargs=0 VCSRevert call s:MarkOrigBufferForSetup(s:ExecuteVCSCommand('Revert', [], 1)) com! -nargs=? VCSReview call s:ExecuteVCSCommand('Review', [], 1) com! -nargs=* VCSStatus call s:ExecuteVCSCommand('Status', [], 1) -- 2.11.4.GIT