From c2208b3d913c2e53b96d7f11b31422a57366f601 Mon Sep 17 00:00:00 2001 From: Daniel Colascione Date: Fri, 9 Jan 2015 22:44:31 -0800 Subject: [PATCH] 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. --- lisp/ChangeLog | 5 +++++ lisp/vc/vc-hooks.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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) -- 2.39.2