More info for '?'.

* magit.el (magit-describe-item): Add magit-section-context-type.
This commit is contained in:
Marius Vollmer 2009-02-15 02:06:53 +02:00
parent 1b4094e3de
commit 401c548dc5

View file

@ -2664,12 +2664,13 @@ Prefix arg means justify as well."
(defun magit-describe-item ()
(interactive)
(let ((section (magit-current-section)))
(message "Section: %s %s-%s %S %S"
(message "Section: %s %s-%s %S %S %S"
(magit-section-type section)
(magit-section-beginning section)
(magit-section-end section)
(magit-section-title section)
(magit-section-info section))))
(magit-section-info section)
(magit-section-context-type section))))
(defun magit-copy-item-as-kill ()
"Copy sha1 of commit at point into kill ring."