diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2021-12-10 11:57:17 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2021-12-10 19:14:42 +0100 |
| commit | c2db8ce4d9844509add56fdc114bf7f2f7fa91a3 (patch) | |
| tree | b2d82ae31050bbb3351bde00e7dcf9ad3b13edc3 | |
| parent | ab91f727fbd680a77be82fbc18bb51dfd31b2f68 (diff) | |
Expand docstrings
| -rw-r--r-- | cape.el | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -645,12 +645,13 @@ PREFIX is the prefix regular expression." (list :annotation-function #',ann :company-docsig #',docsig :exit-function #',exit - :company-kind (lambda (_) 'text))) + :company-kind (lambda (_) 'text)) + ,(format "Completion extra properties for `%s'." name)) (defun ,capf (&optional interactive) ,(format "Complete unicode character at point. Uses the same input format as the %s input method, -see `describe-input-method'. If INTERACTIVE is nil -the function acts like a capf." method) +see (describe-input-method %S). If INTERACTIVE +is nil the function acts like a capf." method method) (interactive (list t)) (if interactive ;; NOTE: Disable cycling since replacement breaks it. |
