unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#21364: [PATCH] Add vc-activate (interactive) to activate VC mode on the current buffer
@ 2015-08-27 18:32 David Caldwell
  2015-08-28  2:23 ` Stefan Monnier
  0 siblings, 1 reply; 12+ messages in thread
From: David Caldwell @ 2015-08-27 18:32 UTC (permalink / raw)
  To: 21364

[-- Attachment #1: Type: text/plain, Size: 805 bytes --]

Hello,

Attached is a patch (in git am format) to add a new interactive function
`vc-activate`, which simply calls `vc-find-file-hook` to activate VC
mode on a buffer.

The motivation comes from the fact that I don't consistently use VC for
everything. I often pop back and forth to the command line, depending on
the situation. This ends up with a lot of "git add" commands being run
behind emacs's back. I've been using `M-x revert-buffer` or `C-x C-v`,
but both of them seem too harsh for what I really want, which is for VC
to just check again real quick. I could `M-: RET (vc-find-file-hook)`
but that doesn't roll off the tongue very well.

`vc-activate` is a nicely named interactive wrapper around
vc-find-file-hook so that I can just do `M-x vc-activate RET` and I'm in
business.

Thanks,
  David

[-- Attachment #2: 0001-Add-vc-activate-interactive-to-activate-VC-mode-on-t.patch --]
[-- Type: text/x-diff, Size: 1032 bytes --]

From 627c54175d9287143499ed42be91d3fcc42a74b1 Mon Sep 17 00:00:00 2001
From: David Caldwell <david@porkrind.org>
Date: Thu, 27 Aug 2015 11:04:51 -0700
Subject: [PATCH] Add vc-activate (interactive) to activate VC mode on the
 current buffer

(which may have been added to revision control behind Emacs's back).

* lisp/vc/vc-hooks.el (vc-activate): New; interactive way to activate VC
mode on the current buffer.
---
 lisp/vc/vc-hooks.el | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el
index bae9919..1c12b01 100644
--- a/lisp/vc/vc-hooks.el
+++ b/lisp/vc/vc-hooks.el
@@ -851,6 +851,11 @@ current, and kill the buffer that visits the link."
 
 (add-hook 'find-file-hook 'vc-find-file-hook)
 
+(defun vc-activate ()
+  "Activate VC mode on current buffer if appropriate."
+  (interactive)
+  (vc-find-file-hook))
+
 (defun vc-kill-buffer-hook ()
   "Discard VC info about a file when we kill its buffer."
   (when buffer-file-name (vc-file-clearprops buffer-file-name)))
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2015-09-02  3:45 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-27 18:32 bug#21364: [PATCH] Add vc-activate (interactive) to activate VC mode on the current buffer David Caldwell
2015-08-28  2:23 ` Stefan Monnier
2015-08-28  2:43   ` David Caldwell
2015-08-29 15:26     ` Stefan Monnier
2015-08-29 17:39       ` David Caldwell
2015-08-30  2:11         ` Stefan Monnier
2015-08-30 10:22           ` David Caldwell
2015-08-31  1:39             ` Stefan Monnier
2015-08-31 10:05               ` David Caldwell
2015-08-31 17:45                 ` Stefan Monnier
2015-09-01 14:56                   ` David Caldwell
2015-09-02  3:45                     ` Stefan Monnier

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).