diff options
author | Alexandre Julliard <julliard@winehq.org> | 2008-08-04 09:30:42 +0200 |
---|---|---|
committer | Alexandre Julliard <julliard@winehq.org> | 2008-11-23 11:54:38 +0100 |
commit | b0a53e9e56d0a501aebc99d3614be413e91613f6 (patch) | |
tree | 0457ba8809e7fdbc71647dca65013a656a30a329 | |
parent | git.el: Never clear the status buffer, only update the files. (diff) | |
download | tgif-b0a53e9e56d0a501aebc99d3614be413e91613f6.tar.xz |
git.el: Add an insert file command.
This allows to insert a file in the buffer no matter what its state
is, making it possible for instance to remove an up-to-date file.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-rw-r--r-- | contrib/emacs/git.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/emacs/git.el b/contrib/emacs/git.el index 67c5275992..6119c31d05 100644 --- a/contrib/emacs/git.el +++ b/contrib/emacs/git.el @@ -1019,6 +1019,11 @@ Return the list of files that haven't been handled." (setq node (ewoc-prev git-status node))) (ewoc-goto-node git-status last))) +(defun git-insert-file (file) + "Insert file(s) into the git-status buffer." + (interactive "fInsert file: ") + (git-update-status-files (list (file-relative-name file)))) + (defun git-add-file () "Add marked file(s) to the index cache." (interactive) @@ -1449,6 +1454,7 @@ amended version of it." (define-key map "\r" 'git-find-file) (define-key map "g" 'git-refresh-status) (define-key map "i" 'git-ignore-file) + (define-key map "I" 'git-insert-file) (define-key map "l" 'git-log-file) (define-key map "m" 'git-mark-file) (define-key map "M" 'git-mark-all) @@ -1505,6 +1511,7 @@ amended version of it." ["Revert File" git-revert-file t] ["Ignore File" git-ignore-file t] ["Remove File" git-remove-file t] + ["Insert File" git-insert-file t] "--------" ["Find File" git-find-file t] ["View File" git-view-file t] |