))))
#+END_SRC
+** git-messenger
+[2015-02-22 Sun 14:00]
+Provides function that popup commit message at current line. This is
+useful when you want to know why this line was changed.
+#+BEGIN_SRC emacs-lisp :tangle yes
+(use-package git-messenger
+ :ensure git-messenger
+ :commands (git-messenger:popup-message)
+ :bind (("C-x v p" . git-messenger:popup-message))
+ :config
+ (progn
+ (bind-key "m" 'git-messenger:copy-message git-messenger-map)
+ (add-hook 'git-messenger:popup-buffer-hook 'magit-commit-mode)
+ (setq git-messenger:show-detail t)))
+#+END_SRC
** git timemachine
[2014-07-23 Mi 12:57]
Browse historic versions of a file with p (previous) and n (next).