Variable: embark-org-link-copy-map

embark-org-link-copy-map is a variable defined in embark-org.el.

Value

d  embark-org-copy-link-description
f  embark-org-copy-link-in-full
i  embark-org-copy-link-inner-target
m  embark-org-copy-as-markdown
t  embark-org-copy-link-target
w  embark-org-copy-link-inner-target

Documentation

Keymap for different ways to copy Org links to the kill-ring.

You should bind w in this map to your most frequently used link copying function. The default is for w to copy the "inner target" (see embark-org-copy-link-inner-target); which is also bound to i.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark-org.el
(defvar-keymap embark-org-link-copy-map
  :doc "Keymap for different ways to copy Org links to the kill-ring.

You should bind w in this map to your most frequently used link
copying function.  The default is for w to copy the \"inner
target\" (see `embark-org-copy-link-inner-target'); which is also
bound to i."
  :parent nil
  "w" #'embark-org-copy-link-inner-target
  "f" #'embark-org-copy-link-in-full
  "d" #'embark-org-copy-link-description
  "t" #'embark-org-copy-link-target
  "i" #'embark-org-copy-link-inner-target
  "m" #'embark-org-copy-as-markdown)