0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-16 11:46:26 +00:00

Backport commit 55555a6a0 from Emacs

* lisp/org-protocol.el: Minor copy-edits to Commentary.

org-protocol: Minor copy-edits to Commentary
55555a6a0d1d76468f8327972b3cb067b9e35f24
Stefan Kangas
Sat Dec 30 17:53:53 2023 +0100
This commit is contained in:
Stefan Kangas 2023-12-30 17:53:26 +01:00 committed by Kyle Meyer
parent 74006c7ab2
commit 38ccb77196

View file

@ -34,7 +34,10 @@
;; `org-protocol-protocol-alist' and `org-protocol-protocol-alist-default'. ;; `org-protocol-protocol-alist' and `org-protocol-protocol-alist-default'.
;; ;;
;; Any application that supports calling external programs with an URL ;; Any application that supports calling external programs with an URL
;; as argument may be used with this functionality. ;; as argument could use this functionality. For example, you can
;; configure bookmarks in your web browser to send a link to the
;; current page to Org and create a note from it using `org-capture'.
;; See Info node `(org) Protocols' for more information.
;; ;;
;; ;;
;; Usage: ;; Usage:
@ -44,13 +47,13 @@
;; ;;
;; (require 'org-protocol) ;; (require 'org-protocol)
;; ;;
;; 3.) Ensure emacs-server is up and running. ;; 2.) Ensure emacs-server is up and running.
;; 4.) Try this from the command line (adjust the URL as needed): ;; 3.) Try this from the command line (adjust the URL as needed):
;; ;;
;; $ emacsclient \ ;; $ emacsclient \
;; "org-protocol://store-link?url=http:%2F%2Flocalhost%2Findex.html&title=The%20title" ;; "org-protocol://store-link?url=http:%2F%2Flocalhost%2Findex.html&title=The%20title"
;; ;;
;; 5.) Optionally add custom sub-protocols and handlers: ;; 4.) Optionally, add custom sub-protocols and handlers:
;; ;;
;; (setq org-protocol-protocol-alist ;; (setq org-protocol-protocol-alist
;; '(("my-protocol" ;; '(("my-protocol"
@ -64,10 +67,11 @@
;; If it works, you can now setup other applications for using this feature. ;; If it works, you can now setup other applications for using this feature.
;; ;;
;; ;;
;; As of March 2009 Firefox users follow the steps documented on ;; Firefox users follow the steps documented on
;; https://kb.mozillazine.org/Register_protocol, Opera setup is described here: ;; https://kb.mozillazine.org/Register_protocol, Opera setup is
;; http://www.opera.com/support/kb/view/535/ ;; described here: http://www.opera.com/support/kb/view/535/
;; ;;
;; See also: https://orgmode.org/worg/org-contrib/org-protocol.html
;; ;;
;; Documentation ;; Documentation
;; ------------- ;; -------------
@ -123,9 +127,6 @@
;; Note that using double slashes is optional from org-protocol.el's point of ;; Note that using double slashes is optional from org-protocol.el's point of
;; view because emacsclient squashes the slashes to one. ;; view because emacsclient squashes the slashes to one.
;; ;;
;;
;; provides: 'org-protocol
;;
;;; Code: ;;; Code:
(require 'org-macs) (require 'org-macs)