summaryrefslogtreecommitdiff
path: root/cape.el
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2024-06-27 00:57:27 +0200
committerDaniel Mendler <mail@daniel-mendler.de>2024-06-27 00:57:27 +0200
commit4b7b45c08ef5ff261616d7e321d1318539b5872e (patch)
tree7047fc8e26d5282b718b8c2c9d02f57eb2146c02 /cape.el
parentf61da109a9e4491614938c300291060fd8855c1b (diff)
Remove stability warning
Diffstat (limited to 'cape.el')
-rw-r--r--cape.el14
1 files changed, 5 insertions, 9 deletions
diff --git a/cape.el b/cape.el
index adab1f1..e7d09b6 100644
--- a/cape.el
+++ b/cape.el
@@ -816,11 +816,10 @@ If INTERACTIVE is nil the function acts like a Capf."
;;;###autoload
(defun cape-company-to-capf (backend &optional valid)
"Convert Company BACKEND function to Capf.
-VALID is a function taking the old and new input string. It
-should return nil if the cached candidates became invalid. The
-default value for VALID is `string-prefix-p' such that the
-candidates are only fetched again if the input prefix
-changed. The function `cape-company-to-capf' is experimental."
+VALID is a function taking the old and new input string. It should
+return nil if the cached candidates became invalid. The default value
+for VALID is `string-prefix-p' such that the candidates are only fetched
+again if the input prefix changed."
(lambda ()
(when (and (symbolp backend) (not (fboundp backend)))
(ignore-errors (require backend nil t)))
@@ -909,10 +908,7 @@ multiple super Capfs in the `completion-at-point-functions':
(list (cape-capf-super \\='eglot-completion-at-point
:with \\='tempel-complete)
(cape-capf-super \\='cape-dabbrev
- :with \\='tempel-complete)))
-
-The functions `cape-wrap-super' and `cape-capf-super' are
-experimental."
+ :with \\='tempel-complete)))"
(when-let ((results (cl-loop for capf in capfs until (eq capf :with)
for res = (funcall capf)
if res collect (cons t res))))