Fix asciidoc demote function name

This commit is contained in:
Shaun Taheri 2016-04-25 12:13:59 +02:00
parent 4071e0c215
commit 5c1c15bbd8
2 changed files with 4 additions and 4 deletions

View File

@ -41,5 +41,5 @@ file.
| Key Binding | Description |
|-------------+---------------------|
| ~M-h~ | Promote title level |
| ~M-l~ | Denote title level |
| ~M-l~ | Demote title level |

View File

@ -39,8 +39,8 @@
"xb" 'tempo-template-adoc-strong
"xi" 'tempo-template-adoc-emphasis)
;; yes, exactly like that. To "promote" title is to INCREASE its size.
;; `adoc-denote' does the opposite: increases its LEVEL,
;; `adoc-demote' does the opposite: increases its LEVEL,
;; which DECREASES its size.
(define-key adoc-mode-map (kbd "M-h") 'adoc-denote)
;; see the comment about adoc-denote above
(define-key adoc-mode-map (kbd "M-h") 'adoc-demote)
;; see the comment about adoc-demote above
(define-key adoc-mode-map (kbd "M-l") 'adoc-promote))))