blob: 158f35720cb78a5de5077119baed90e988b9133b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#+title: cape.el - Changelog
#+author: Daniel Mendler
#+language: en
* Version 1.0 (2023-12-01)
- =cape-emoji=: New Capf available on Emacs 29 and newer.
- =cape-wrap-debug=, =cape-capf-debug=: New Capf transformers to add debug messages
to a Capf.
- =cape-wrap-passthrough=, =cape-capf-passthrough=: New Capf transformers to defeat
completion style filtering.
- =cape-capf-inside-faces=, =cape-wrap-inside-faces=: New transformer
- Rename =cape-super-capf= to =cape-capf-super=. Add =cape-wrap-super= for consistency
with other Capf combinators.
- Rename =cape-interactive-capf= to =cape-capf-interactive= for consistency with
other Capf combinators.
- Rename =cape-symbol= to =cape-elisp-symbol=.
* Version 0.17 (2023-08-14)
- Bugfixes.
- =cape-dict=: Always use grep, remove =cape-dict-use-grep=.
- =cape-dict=: Add =cape-dict-limit=.
- Remove obsolete alias =cape-ispell=.
- Generalize =cape--cached-table=. The candidate computation function must return
a pair of a predicate function and the list of candidates.
* Version 0.16 (2023-07-02)
- =cape-dabbrev=: Respect =dabbrev-abbrev-char-regexp= and
=dabbrev-abbrev-skip-leading-regexp=.
- =cape-file=: Quote file names in comint/eshell buffers.
* Version 0.15 (2023-04-17)
- Bugfixes
* Version 0.14 (2023-04-13)
- =cape-wrap-buster=, =cape-capf-buster= and =cape-company-to-capf=: The argument
VALID must be a function taking two arguments, the old and new input. It
should return nil if the input must be considered invalid such that the
candidates must be recomputed.
- =cape-ispell=: Deprecate in favor of improved =cape-dict=. Note that =cape-ispell=
and =ispell-lookup-words= did not really consult =ispell= or =aspell=, but only grep
through the word list specified by =ispell-alternate-dictionary=.
- =cape-dict-file=: Support multiple dictionary files or a function returning one
or more files.
- =cape-dict=, =cape-dabbrev=: Replace case depending on initial input.
- =cape-dict-case-replace=: New variable to configure case replacement, similar to
=dabbrev-case-replace=.
- =cape-dict-case-fold=: New variable to configure if case is ignored
during search and completion.
- =cape-elisp-block=: Complete Elisp in Org or Markdown code block. This Capf is
particularly useful for literate Emacs configurations.
* Version 0.13 (2023-02-15)
- Start of changelog.
|