summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2019-01-15 22:38:35 -0500
committerKyle Meyer <kyle@kyleam.com>2019-01-15 22:38:35 -0500
commit9dd7419abce833b378bedf69282bb0adb5a036c1 (patch)
treef19f4ec55799252c247fa031207be805a32f1114
parentd6bfa69ed0c7de440cdc6acb2b7ad6278315b065 (diff)
downloademacs.d-9dd7419abce833b378bedf69282bb0adb5a036c1.tar.gz
Fix overaggressive URL updates from 01f2da58
-rw-r--r--lisp/km-files.el2
-rw-r--r--lisp/km-hydra.el4
-rw-r--r--lisp/km-magit.el2
3 files changed, 4 insertions, 4 deletions
diff --git a/lisp/km-files.el b/lisp/km-files.el
index c494a53..b829632 100644
--- a/lisp/km-files.el
+++ b/lisp/km-files.el
@@ -40,7 +40,7 @@
(message "File '%s' successfully renamed to '%s'"
name (file-name-nondirectory new-name)))))))
-;; https://gitlab.com/purcell/emacs.d/blob/master/lisp/init-utils.el
+;; https://github.com/purcell/emacs.d/blob/master/lisp/init-utils.el
;;;###autoload
(defun km/delete-this-file ()
"Delete the current file, and kill the buffer."
diff --git a/lisp/km-hydra.el b/lisp/km-hydra.el
index 215d9e4..f67b017 100644
--- a/lisp/km-hydra.el
+++ b/lisp/km-hydra.el
@@ -82,7 +82,7 @@ _z_: zgrep
("q" nil "quit"))
-;; Modified from https://gitlab.com/abo-abo/hydra/wiki/Emacs
+;; Modified from https://github.com/abo-abo/hydra/wiki/Emacs
(defhydra hydra-outline-mode (:hint nil)
"
^^Hide ^^Show ^^Move
@@ -140,7 +140,7 @@ _s_: Swap _u_: Winner undo _i_: Scroll other down
("q" nil "quit"))
;; Multiple cursors hydra is modified from
-;; https://gitlab.com/abo-abo/hydra/wiki/multiple-cursors
+;; https://github.com/abo-abo/hydra/wiki/multiple-cursors
(defhydra hydra-multiple-cursors (:hint nil)
"
^^Up ^^Down
diff --git a/lisp/km-magit.el b/lisp/km-magit.el
index 47bbae6..6c2a181 100644
--- a/lisp/km-magit.el
+++ b/lisp/km-magit.el
@@ -809,7 +809,7 @@ function."
(hack-dir-local-variables-non-file-buffer)
bug-reference-url-format))))
(and url
- (string-match "\\`https://gitlab.com/[^/]+/[^/]+" url)
+ (string-match "\\`https://github.com/[^/]+/[^/]+" url)
(match-string 0 url))))
(defun km/magit-github-file-link ()