Add support for 'thing-at-point' to get URL at point

* lisp/org.el (thingatpt): Require.
(org--link-at-point, org--bounds-of-link-at-point): New functions...
(org-mode): ... add to 'thing-at-point-provider-alist' and friends.

* testing/lisp/test-org.el (test-org/thing-at-point/url): New test.

* etc/ORG-NEWS: Announce this change.
This commit is contained in:
Jim Porter 2023-11-06 11:39:09 -08:00 committed by Ihor Radchenko
parent 09f339c9dd
commit 66cb45658d
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
3 changed files with 43 additions and 0 deletions

View File

@ -1486,6 +1486,11 @@ library should be loaded first.
TODO state, priority, tags, statistics cookies, and COMMENT keywords
are allowed in the tree structure.
*** Org links now support ~thing-at-point~
You can now retrieve the destination of a link by calling
~(thing-at-point 'url)~.
*** Add support for ~logind~ idle time in ~org-user-idle-seconds~
When Emacs is built with =dbus= support and

View File

@ -81,6 +81,7 @@
(require 'calendar)
(require 'find-func)
(require 'format-spec)
(require 'thingatpt)
(condition-case nil
(load (concat (file-name-directory load-file-name)
@ -5041,6 +5042,19 @@ The following commands are available:
#'pcomplete-completions-at-point nil t)
(setq-local buffer-face-mode-face 'org-default)
;; `thing-at-point' support
(setq-local thing-at-point-provider-alist
(cons '(url . org--link-at-point)
thing-at-point-provider-alist))
(when (boundp 'forward-thing-provider-alist)
(setq-local forward-thing-provider-alist
(cons '(url . org-next-link)
forward-thing-provider-alist)))
(when (boundp 'bounds-of-thing-at-point-provider-alist)
(setq-local bounds-of-thing-at-point-provider-alist
(cons '(url . org--bounds-of-link-at-point)
bounds-of-thing-at-point-provider-alist)))
;; If empty file that did not turn on Org mode automatically, make
;; it to.
(when (and org-insert-mode-line-in-empty-file
@ -8753,6 +8767,17 @@ there is one, return it."
(setq link (nth (1- nth) links)))))
(cons link end)))))
(defun org--link-at-point ()
"`thing-at-point' provider function."
(org-element-property :raw-link (org-element-context)))
(defun org--bounds-of-link-at-point ()
"`bounds-of-thing-at-point' provider function."
(let ((context (org-element-context)))
(when (eq (org-element-type context) 'link)
(cons (org-element-begin context)
(org-element-end context)))))
;;; File search
(defun org-do-occur (regexp &optional cleanup)

View File

@ -3630,6 +3630,19 @@ Foo Bar
(org-open-at-point))
nil)))))
;;; Thing at point
(ert-deftest test-org/thing-at-point/url ()
"Test that `thing-at-point' returns the URL at point."
(org-test-with-temp-text
"[[https://www.gnu.org/software/emacs/][GNU Emacs]]"
(should (string= (thing-at-point 'url)
"https://www.gnu.org/software/emacs/"))
(when (boundp 'bounds-of-thing-at-point-provider-alist)
(should (equal (bounds-of-thing-at-point 'url)
'(1 . 51))))))
;;; Node Properties