mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
git.el: Move point after the log message header when entering log-edit mode.
Suggested by Han-Wen Nienhuys. Signed-off-by: Alexandre Julliard <julliard@winehq.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
b8ee51815a
commit
2ac2b19601
1 changed files with 2 additions and 1 deletions
|
@ -899,7 +899,8 @@ and returns the process output as a string."
|
|||
(2 font-lock-function-name-face))
|
||||
(,(concat "^\\(" (regexp-quote git-log-msg-separator) "\\)$")
|
||||
(1 font-lock-comment-face)))))
|
||||
(log-edit #'git-do-commit nil #'git-log-edit-files buffer))))
|
||||
(log-edit #'git-do-commit nil #'git-log-edit-files buffer)
|
||||
(re-search-forward (regexp-quote (concat git-log-msg-separator "\n")) nil t))))
|
||||
|
||||
(defun git-find-file ()
|
||||
"Visit the current file in its own buffer."
|
||||
|
|
Loading…
Reference in a new issue