Variable: org-tempo-keywords-alist
org-tempo-keywords-alist is a customizable variable defined in
org-tempo.el.gz.
Value
(("L" . "latex") ("H" . "html") ("A" . "ascii") ("i" . "index"))
Documentation
Keyword completion elements.
This is an alist of KEY characters and corresponding KEYWORDS,
just like org-structure-template-alist. The tempo snippet
"<KEY" will be expanded using the KEYWORD value. For example
"<L" at the beginning of a line is expanded to "#+latex:".
Do not use "I" as a KEY, as it is reserved for expanding
"#+include".
This variable was added, or its default value changed, in Org version
9.2.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-tempo.el.gz
(defcustom org-tempo-keywords-alist
'(("L" . "latex")
("H" . "html")
("A" . "ascii")
("i" . "index"))
"Keyword completion elements.
This is an alist of KEY characters and corresponding KEYWORDS,
just like `org-structure-template-alist'. The tempo snippet
\"<KEY\" will be expanded using the KEYWORD value. For example
\"<L\" at the beginning of a line is expanded to \"#+latex:\".
Do not use \"I\" as a KEY, as it is reserved for expanding
\"#+include\"."
:type '(repeat (cons (string :tag "Key")
(string :tag "Keyword")))
:package-version '(Org . "9.2"))