Skip to content

Instantly share code, notes, and snippets.

@dzzzchhh
Created January 9, 2023 13:29
Show Gist options
  • Save dzzzchhh/14c67224340a9f469bfb5bdcfefe45a4 to your computer and use it in GitHub Desktop.
Save dzzzchhh/14c67224340a9f469bfb5bdcfefe45a4 to your computer and use it in GitHub Desktop.
quickly list file authors for the current buffer
(defun dzch/list-file-authors ()
(interactive)
(let* ((path buffer-file-name)
(cmd "git log --pretty=format:%s %s | sort -r | uniq -c | sort -r")
(result (shell-command-to-string (format cmd "%ae" path))))
(display-message-or-buffer result)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment