summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.org b/README.org
index cde6200..5178cdf 100644
--- a/README.org
+++ b/README.org
@@ -43,6 +43,7 @@ backends into Capfs and merge multiple Capfs into a Super-Capf!
+ ~cape-line~: Complete entire line from file
+ ~cape-tex~: Complete unicode char from TeX command, e.g. ~\hbar~.
+ ~cape-sgml~: Complete unicode char from Sgml entity, e.g., ~&alpha~.
++ ~cape-rfc1345~: Complete unicode char using RFC 1345 mnemonics.
* Configuration
@@ -70,7 +71,8 @@ this package should be upstreamed into Emacs itself.
("C-c p l" . cape-line)
("C-c p w" . cape-dict)
("C-c p \\" . cape-tex)
- ("C-c p &" . cape-sgml))
+ ("C-c p &" . cape-sgml)
+ ("C-c p r" . cape-rfc1345))
:init
;; Add `completion-at-point-functions', used by `completion-at-point'.
(add-to-list 'completion-at-point-functions #'cape-file)
@@ -78,6 +80,7 @@ this package should be upstreamed into Emacs itself.
(add-to-list 'completion-at-point-functions #'cape-dabbrev)
(add-to-list 'completion-at-point-functions #'cape-keyword)
;;(add-to-list 'completion-at-point-functions #'cape-sgml)
+ ;;(add-to-list 'completion-at-point-functions #'cape-rfc1345)
;;(add-to-list 'completion-at-point-functions #'cape-abbrev)
;;(add-to-list 'completion-at-point-functions #'cape-ispell)
;;(add-to-list 'completion-at-point-functions #'cape-dict)