diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2021-11-29 15:57:55 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2021-11-29 15:57:55 +0100 |
| commit | 5e6abb568ac4b16469033b5751d642e23e8c819f (patch) | |
| tree | eebda8a01081414192efcc4128b45686403628c6 | |
| parent | e81e3cfd4e6a0c111f94d877db43770d83d1a68a (diff) | |
Rename capf function in analogy to the table function
| -rw-r--r-- | README.org | 2 | ||||
| -rw-r--r-- | cape.el | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -159,6 +159,6 @@ achieve a similarly refreshing strategy. - ~cape-silent-capf~: Wrap a chatty Capf and silence it. - ~cape-noninterruptible-capf~: Protect a Capf which does not like to be interrupted. - ~cape-interactive-capf~: Create a Capf which can be called interactively. +- ~cape-capf-case-fold~: Create a Capf which is case insensitive. - ~cape-capf-with-properties~: Add completion properties to a Capf. - ~cape-capf-with-predicate~: Add candidate predicate to a Capf. -- ~cape-capf-with-case-fold~: Create a Capf which is case insensitive. @@ -876,7 +876,7 @@ The PREDICATE is passed the candidate symbol or string." `(,beg ,end ,(cape--silent-table table) ,@plist))))) ;;;###autoload -(defun cape-capf-with-case-fold (capf) +(defun cape-capf-case-fold (capf) "Create a new CAPF which is case insensitive." (lambda () (pcase (funcall capf) |
