branch: externals/cape commit b3eb9a8a696c710b51399991a49639f1f8acb584 Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Sort list of Capfs --- README.org | 11 +++++------ cape.el | 20 ++++++++++---------- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/README.org b/README.org index b23745c0d0..292c231ae2 100644 --- a/README.org +++ b/README.org @@ -36,19 +36,18 @@ advantage of Company backends even if you are not using Company as frontend. * Available Capfs -+ ~cape-dabbrev~: Complete word from current buffers. See also ~dabbrev-capf~ on - Emacs 29. ++ ~cape-abbrev~: Complete abbreviation (~add-global-abbrev~, ~add-mode-abbrev~). ++ ~cape-dabbrev~: Complete word from current buffers. See also ~dabbrev-capf~ on Emacs 29. ++ ~cape-dict~: Complete word from dictionary file. + ~cape-elisp-block~: Complete Elisp in Org or Markdown code block. + ~cape-elisp-symbol~: Complete Elisp symbol. + ~cape-file~: Complete file name. + ~cape-history~: Complete from Eshell, Comint or minibuffer history. + ~cape-keyword~: Complete programming language keyword. -+ ~cape-abbrev~: Complete abbreviation (~add-global-abbrev~, ~add-mode-abbrev~). -+ ~cape-dict~: Complete word from dictionary file. + ~cape-line~: Complete entire line from current buffer. -+ ~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. ++ ~cape-sgml~: Complete Unicode char from SGML entity, e.g., ~&alpha~. ++ ~cape-tex~: Complete Unicode char from TeX command, e.g. ~\hbar~. * Configuration diff --git a/cape.el b/cape.el index 72ce94f4c1..def48c0da2 100644 --- a/cape.el +++ b/cape.el @@ -30,18 +30,18 @@ ;; Let your completions fly! This package provides additional completion ;; backends in the form of Capfs (completion-at-point-functions). ;; -;; `cape-dabbrev': Complete word from current buffers +;; `cape-abbrev': Complete abbreviation (add-global-abbrev, add-mode-abbrev). +;; `cape-dabbrev': Complete word from current buffers. +;; `cape-dict': Complete word from dictionary file. ;; `cape-elisp-block': Complete Elisp in Org or Markdown code block. -;; `cape-file': Complete file name -;; `cape-history': Complete from Eshell, Comint or minibuffer history -;; `cape-keyword': Complete programming language keyword -;; `cape-elisp-symbol': Complete Elisp symbol -;; `cape-abbrev': Complete abbreviation (add-global-abbrev, add-mode-abbrev) -;; `cape-dict': Complete word from dictionary file -;; `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-elisp-symbol': Complete Elisp symbol. +;; `cape-file': Complete file name. +;; `cape-history': Complete from Eshell, Comint or minibuffer history. +;; `cape-keyword': Complete programming language keyword. +;; `cape-line': Complete entire line from file. ;; `cape-rfc1345': Complete Unicode char using RFC 1345 mnemonics. +;; `cape-sgml': Complete Unicode char from SGML entity, e.g., &alpha. +;; `cape-tex': Complete Unicode char from TeX command, e.g. \hbar. ;;; Code: