diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2022-04-29 20:49:38 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2022-04-29 20:49:38 +0200 |
| commit | 1c7eea43a336046e7ca341cd2cf637360f7eb4f7 (patch) | |
| tree | 4cf9c41e7d8b083a29f46ce6258ee988b1d6322f /cape-char.el | |
| parent | ecd5864bcf3ffa93d5d2a2c01ea0772672cfe4be (diff) | |
No exclusive Capf exclusivity treatment for cape-char and cape-keyword!
Diffstat (limited to 'cape-char.el')
| -rw-r--r-- | cape-char.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cape-char.el b/cape-char.el index 4eb65fa..37498bc 100644 --- a/cape-char.el +++ b/cape-char.el @@ -101,7 +101,8 @@ PREFIX are the prefix characters." (list :annotation-function #',ann :company-docsig #',docsig :exit-function #',exit - :company-kind (lambda (_) 'text)) + :company-kind (lambda (_) 'text) + :exclusive 'no) ,(format "Completion extra properties for `%s'." name)) (defun ,capf (&optional interactive) ,(format "Complete unicode character at point. @@ -123,8 +124,7 @@ is nil the function acts like a capf." method method) ((not ,prefix-required) (cons (point) (point))))) (append (list (car bounds) (cdr bounds) - (cape--table-with-properties ,hash :category ',capf) - :exclusive 'no) + (cape--table-with-properties ,hash :category ',capf)) ,properties))))))) ;;;###autoload (autoload 'cape-tex "cape-char" nil t) |
