summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Swainland <noah@distinctly.pink>2020-08-20 15:17:19 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2020-08-20 15:17:19 +0200
commit80628df778c2608e0d0d934ed884365ae94f9ddd (patch)
tree29668a6b19393553c3e1efb69c93dff7272af6a5
parenta566e409d0d962d3c2870691175836da22c31111 (diff)
downloademacs-80628df778c2608e0d0d934ed884365ae94f9ddd.tar.gz
Add global-goto-address-mode
* doc/emacs/misc.texi (Goto Address mode): Document it. * lisp/net/goto-addr.el (global-goto-address-mode) (goto-addr-mode--turn-on): New functions (bug#42937).
-rw-r--r--doc/emacs/misc.texi3
-rw-r--r--etc/NEWS4
-rw-r--r--lisp/net/goto-addr.el10
3 files changed, 17 insertions, 0 deletions
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi
index 317a1979e9d..c8b21e701c7 100644
--- a/doc/emacs/misc.texi
+++ b/doc/emacs/misc.texi
@@ -2945,6 +2945,9 @@ browse-url @key{RET}}.
@table @kbd
@item M-x goto-address-mode
Activate URLs and e-mail addresses in the current buffer.
+
+@item M-x global-goto-address-mode
+Activate @code{goto-address-mode} in all buffers.
@end table
@kindex C-c RET @r{(Goto Address mode)}
diff --git a/etc/NEWS b/etc/NEWS
index bbd34a5d6f4..53391f91f73 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -820,6 +820,10 @@ window after starting). This variable defaults to nil.
** Miscellaneous
++++
+*** New global mode 'global-goto-address-mode'
+This will enable 'goto-address-mode' in all buffers.
+
---
*** 'C-s' in 'M-x' now searches over completions again.
In Emacs 23, typing 'M-x' ('read-extended-command') and then 'C-s' (to
diff --git a/lisp/net/goto-addr.el b/lisp/net/goto-addr.el
index 9436f45aa32..43bea76a6bc 100644
--- a/lisp/net/goto-addr.el
+++ b/lisp/net/goto-addr.el
@@ -280,6 +280,16 @@ Also fontifies the buffer appropriately (see `goto-address-fontify-p' and
(widen)
(goto-address-unfontify (point-min) (point-max)))))
+(defun goto-addr-mode--turn-on ()
+ (when (not goto-address-mode)
+ (goto-address-mode 1)))
+
+;;;###autoload
+(define-globalized-minor-mode global-goto-address-mode
+ goto-address-mode goto-addr-mode--turn-on
+ :group 'goto-address
+ :version "28.1")
+
;;;###autoload
(define-minor-mode goto-address-prog-mode
"Like `goto-address-mode', but only for comments and strings."