From: Daniel Colascione Date: Sat, 10 Jan 2015 06:44:31 +0000 (-0800) Subject: Better binding for vc-delete-file X-Git-Tag: emacs-25.0.90~2605^2~14 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c2208b3d913c2e53b96d7f11b31422a57366f601;p=emacs.git Better binding for vc-delete-file * lisp/vc/vc-hooks.el (vc-prefix-map): Bind vc-delete-file to C-x v x, by analogy with dired. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c7ad41a800b..fc7f5e57cbd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2015-01-10 Daniel Colascione + + * vc/vc-hooks.el (vc-prefix-map): Bind vc-delete-file to C-x v x, + by analogy with dired. + 2015-01-09 Daniel Colascione * progmodes/js.el (js--function-heading-1-re) diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el index 3b1f6c7103c..7801f4f8ed9 100644 --- a/lisp/vc/vc-hooks.el +++ b/lisp/vc/vc-hooks.el @@ -886,7 +886,7 @@ current, and kill the buffer that visits the link." (define-key map "=" 'vc-diff) (define-key map "D" 'vc-root-diff) (define-key map "~" 'vc-revision-other-window) - (define-key map "[delete]" 'vc-delete-file) + (define-key map "x" 'vc-delete-file) map)) (fset 'vc-prefix-map vc-prefix-map) (define-key ctl-x-map "v" 'vc-prefix-map)