git-messenger.el
is Emacs port of git-messenger.vim.
git-messenger.el
provides function that popup commit message at current line. This is useful when you want to know why this line was changed.
git-messenger
is available on MELPA and MELPA stable
You can install git-messenger
with the following command.
M-x package-install [RET] git-messenger [RET]
git-messenger:popup-message
Pop up last commit message at current line. Show detail message, Commit ID, Author, Date and commit message with C-u
prefix
You can modify key bindings by customizing git-messenger-map
.
M-w
Copy commit message and quit c
Copy commit ID and quit d
Pop up git diff
of last change of this line s
Pop up git show --stat
of last change of this line S
Pop up git show --stat -p
of last change of this line q
Quit git-messenger:show-detail
(Default nil
)
Always show detail message if this value is t
.
git-messenger:handled-backends
(Default '(git svn)
)
Handled VCS which git-messenger
uses. Entries in this list will be tried in order to determine whether a file is under that sort of version control.
git-messenger:use-magit-popup
(Default nil
)
Use magit-show-commit
for showing status/diff commands
git-messenger:before-popup-hook
Run before popup commit message. Hook function take one argument, commit message.
git-messenger:after-popup-hook
Run after popup commit message. Hook function take one argument, commit message.
git-messenger:popup-buffer-hook
Run after popup buffer.
You may be able to use these variables useful in commands of git-messenger-map
.
git-messenger:last-message
Last popup-ed commit message
git-messenger:last-commit-id
Last popup-ed commit ID
(require 'git-messenger) ;; You need not to load if you install with package.el (global-set-key (kbd "C-x v p") 'git-messenger:popup-message) (define-key git-messenger-map (kbd "m") 'git-messenger:copy-message) ;; Use magit-show-commit for showing status/diff commands (custom-set-variables '(git-messenger:use-magit-popup t))
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4