summaryrefslogtreecommitdiff
path: root/lisp/km-magit.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/km-magit.el')
-rw-r--r--lisp/km-magit.el13
1 files changed, 13 insertions, 0 deletions
diff --git a/lisp/km-magit.el b/lisp/km-magit.el
index 4bad322..19cae74 100644
--- a/lisp/km-magit.el
+++ b/lisp/km-magit.el
@@ -654,6 +654,19 @@ argument. Interactively, this can be accessed using the command
(magit-log (list range) args files)
(call-interactively #'magit-log))))
+;;;###autoload
+(defun km/magit-log-occurrence (beg end)
+ "Run `git log -S<content (BEG..END)> HEAD'."
+ (interactive "r")
+ (magit-mode-setup-internal
+ #'magit-log-mode
+ (list (list "HEAD")
+ (cons (format "-S%s" (buffer-substring-no-properties beg end))
+ (cl-delete "-S" (car (magit-log-arguments))
+ :test 'string-prefix-p))
+ nil))
+ (magit-log-goto-same-commit))
+
(defun km/magit-cherry-dwim ()
(interactive)
(-let [(head . upstream)