diff --git a/ansible/roles/emacs/files/elisp/base-functions.el b/ansible/roles/emacs/files/elisp/base-functions.el index 7a46c93..7859e83 100644 --- a/ansible/roles/emacs/files/elisp/base-functions.el +++ b/ansible/roles/emacs/files/elisp/base-functions.el @@ -77,7 +77,7 @@ (let* ( (gh-org (match-string 2 repository-url)) (gh-repo (match-string 3 repository-url)) - (full-url (format "https://github.com/%s/%s/blob/%s/%s#L%s" gh-org gh-repo current-rev relative-path line-number)) + (full-url (format "https://github.com/%s/%s/blob/%s/%s?plain=1#L%s" gh-org gh-repo current-rev relative-path line-number)) ) (message "%s" full-url) (kill-new full-url)