branch: externals/vc-hgcmd commit 5edf2b9ebbe68a05e1d9ad119e239154577953bf Author: muffinmad <andreyk....@gmail.com> Commit: muffinmad <andreyk....@gmail.com>
Enable shelve extension and shelve list by default (fixes #2) --- vc-hgcmd.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/vc-hgcmd.el b/vc-hgcmd.el index e70e322..8712e5e 100644 --- a/vc-hgcmd.el +++ b/vc-hgcmd.el @@ -5,7 +5,7 @@ ;; Author: Andrii Kolomoiets <andreyk....@gmail.com> ;; Keywords: vc ;; URL: https://github.com/muffinmad/emacs-vc-hgcmd -;; Package-Version: 1.6.7 +;; Package-Version: 1.6.8 ;; Package-Requires: ((emacs "25.1")) ;; This file is NOT part of GNU Emacs. @@ -185,7 +185,9 @@ "Hg executable." :type '(string)) -(defcustom vc-hgcmd-cmdserver-config-options '("ui.interactive=True" "ui.editor=emacsclient -a emacs") +(defcustom vc-hgcmd-cmdserver-config-options '("ui.interactive=True" + "ui.editor=emacsclient -a emacs" + "extensions.shelve=") "Config options for command server. Specify options in form <option>=<value>. It will be passed to hg with --config argument." :type '(repeat string)) @@ -213,7 +215,7 @@ same branch was merged." (function) (const :tag "Default commit message" nil))) -(defcustom vc-hgcmd-dir-show-shelve nil +(defcustom vc-hgcmd-dir-show-shelve t "Show current shelves in `vc-dir' buffer." :type '(boolean))