summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-01-19 01:18:44 +0100
committerGravatar Tom Willemse2014-01-19 01:18:44 +0100
commit556bf4fc48d0e82aa32041fdb3ecbda0d85053e0 (patch)
tree5db601400df07d8f61bcc6fac0e61e28ff4b8892 /.emacs.d
parent77394ada9e2009ac80202f527c66efa70f21cff4 (diff)
downloademacs-556bf4fc48d0e82aa32041fdb3ecbda0d85053e0.tar.gz
emacs-556bf4fc48d0e82aa32041fdb3ecbda0d85053e0.zip
Also match https in eshell
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 3465a16..90c6842 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -249,7 +249,7 @@ MODE1 is enabled and vice-versa."
(save-excursion
(goto-char eshell-last-output-start)
(while (re-search-forward
- "http://[^ \n]+" eshell-last-output-end :noerror)
+ "https?://[^ \n]+" eshell-last-output-end :noerror)
(make-button (match-beginning 0) (match-end 0)
'action (lambda (button)
(browse-url (button-label button)))))))