]> git.eshelyaron.com Git - emacs.git/commitdiff
Add global-goto-address-mode
authorNoah Swainland <noah@distinctly.pink>
Thu, 20 Aug 2020 13:17:19 +0000 (15:17 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 20 Aug 2020 13:17:19 +0000 (15:17 +0200)
* 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).

doc/emacs/misc.texi
etc/NEWS
lisp/net/goto-addr.el

index 317a1979e9d68ba9ea5862df3b8b18e13a2dd15a..c8b21e701c7590ed433b2a62eecd038c97845655 100644 (file)
@@ -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)}
index bbd34a5d6f44a2b95625b794fd2999366b677810..53391f91f733f5ac424a1d4ab7a6fddcb6107a87 100644 (file)
--- 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
index 9436f45aa3257fa4e1496e0ed023edb58fa1a146..43bea76a6bced2fe17b0a08c2f986f0586a4990e 100644 (file)
@@ -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."