diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2022-02-25 19:01:54 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2022-02-25 19:01:54 +0100 |
| commit | 2c60d904f452d62137821e289404b3c16daa9673 (patch) | |
| tree | 05d8fbfbc79f7693d3a5bc22f76e8ff28ed22df8 | |
| parent | 5d836c045e40705f9211821f6d5d8ecfb9994b6e (diff) | |
Improve docstrings
| -rw-r--r-- | cape.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -425,6 +425,7 @@ VALID is the input comparator, see `cape--input-valid-p'." ;;;###autoload (defun cape-file (&optional interactive) "Complete file name at point. +See the user option `cape-file-directory-must-exist'. If INTERACTIVE is nil the function acts like a capf." (interactive (list t)) (if interactive @@ -472,7 +473,7 @@ If INTERACTIVE is nil the function acts like a capf." ;;;###autoload (defun cape-symbol (&optional interactive) - "Complete symbol at point. + "Complete Elisp symbol at point. If INTERACTIVE is nil the function acts like a capf." (interactive (list t)) (if interactive @@ -548,7 +549,7 @@ If INTERACTIVE is nil the function acts like a capf." ;;;###autoload (defun cape-ispell (&optional interactive) - "Complete with Ispell at point. + "Complete word with Ispell at point. If INTERACTIVE is nil the function acts like a capf." (interactive (list t)) (if interactive |
