mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-29 07:58:21 +00:00
Footnotes: Load the code and install keybindings for it.
This patch only adds the require for the footnote code, and adds the key and menu bindings for it.
This commit is contained in:
parent
572caeb155
commit
f55fa707b5
14
lisp/org.el
14
lisp/org.el
@ -87,6 +87,7 @@
|
||||
(require 'org-compat)
|
||||
(require 'org-faces)
|
||||
(require 'org-list)
|
||||
(require 'org-footnote)
|
||||
|
||||
;;;; Customization variables
|
||||
|
||||
@ -12492,7 +12493,6 @@ The images can be removed again with \\[org-ctrl-c-ctrl-c]."
|
||||
"Return string to be used as color value for an RGB component."
|
||||
(format "%g" (/ value 65535.0)))
|
||||
|
||||
|
||||
;;;; Key bindings
|
||||
|
||||
;; Make `C-c C-x' a prefix key
|
||||
@ -12633,6 +12633,7 @@ The images can be removed again with \\[org-ctrl-c-ctrl-c]."
|
||||
(org-defkey org-mode-map "\C-c\C-e" 'org-export)
|
||||
(org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width-section)
|
||||
(org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
|
||||
(org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
|
||||
|
||||
(org-defkey org-mode-map "\C-c\C-x\C-k" 'org-mark-entry-for-agenda-action)
|
||||
(org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
|
||||
@ -13045,6 +13046,9 @@ This command does many different things, depending on context:
|
||||
- If the cursor is on a #+TBLFM line, re-apply the formulas to
|
||||
the entire table.
|
||||
|
||||
- If the cursor is at a footnote reference or definition, jump to
|
||||
the corresponding definition or references, respectively.
|
||||
|
||||
- If the cursor is a the beginning of a dynamic block, update it.
|
||||
|
||||
- If the cursor is inside a table created by the table.el package,
|
||||
@ -13090,6 +13094,9 @@ This command does many different things, depending on context:
|
||||
(call-interactively 'org-table-recalculate)
|
||||
(org-table-maybe-recalculate-line))
|
||||
(call-interactively 'org-table-align))
|
||||
((or (org-footnote-at-reference-p)
|
||||
(org-footnote-at-definition-p))
|
||||
(call-interactively 'org-footnote-action))
|
||||
((org-at-item-checkbox-p)
|
||||
(call-interactively 'org-toggle-checkbox))
|
||||
((org-at-item-p)
|
||||
@ -13373,7 +13380,10 @@ See the individual commands for more information."
|
||||
["Convert to odd/even levels" org-convert-to-oddeven-levels t])
|
||||
("Editing"
|
||||
["Emphasis..." org-emphasize t]
|
||||
["Edit Source Example" org-edit-special t])
|
||||
["Edit Source Example" org-edit-special t]
|
||||
"--"
|
||||
["Footnote new/jump" org-footnote-action t]
|
||||
["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
|
||||
("Archive"
|
||||
["Toggle ARCHIVE tag" org-toggle-archive-tag t]
|
||||
; ["Check and Tag Children" (org-toggle-archive-tag (4))
|
||||
|
Loading…
Reference in New Issue
Block a user