]> code.delx.au - gnu-emacs-elpa/blob - NEWS.md
Replace company-elisp with company-capf
[gnu-emacs-elpa] / NEWS.md
1 # History of user-visible changes
2
3 ## Next
4
5 * Starting with Emacs version 24.4, `company-capf` is included in
6 `company-backends` and replaces `company-elisp`.
7 * `company-capf` supports completion tables that return non-default boundaries.
8 * `company-elisp` is enabled in `inferior-emacs-lisp-mode`.
9
10 ## 2013-09-28 (0.6.12)
11
12 * Default value of `company-begin-commands` changed to `(self-insert-command)`.
13 * Futher improvement in `org-indent-mode` compatibility.
14
15 ## 2013-08-18 (0.6.11)
16
17 * `company-template-c-like-templatify` removes all text after closing paren, for
18 use in backends that display additional info there.
19 * `company-cmake` is now bundled.
20 * Better `linum` compatibility in Emacs <= 24.2.
21 * `company-global-modes`: New option.
22
23 ## 2013-05-26 (0.6.10)
24
25 * Plays nicer with `org-indent-mode`.
26 * Works in horizontally scrolled windows.
27
28 ## 2013-05-10 (0.6.9)
29
30 * `company-capf` respects `:exit-function` completion property.
31 * `company-backends`: `prefix` command can return `t` in the cdr.
32 * `company-clang-begin-after-member-access`: New option.
33 * Mouse click outside the tooltip aborts completion.
34 * `company-clang` uses standard input to pass the contents of current buffer to
35 Clang 2.9+, otherwise saves the buffer and passes the path to the file.
36 * `company-clang-auto-save` option has been removed.
37 * Better interaction with `outline-minor-mode`.
38 * `company-dabbrev-code` supports all `prog-mode` derivatives.
39
40 ## 2013-04-16 (0.6.8)
41
42 * `company-auto-complete` is disabled by default.
43 * `company-auto-complete-chars` default value includes fewer syntax classes.
44 * In expanded function calls, arguments skipped by the user default to "argN".
45 * `company-eclim` and `company-clang` do not strip argument types from fields.
46 * `company-clang` expands function calls for all three modes now.
47 * `company-clang` supports `c++-mode` by default.
48
49 ## 2013-04-05 (0.6.7)
50
51 * Two `company-elisp` tweaks.
52
53 ## 2013-04-01 (0.6.6)
54
55 * `company-elisp` doesn't offer completions when typing the name and the
56 arguments of a new function or macro definition, allowing to fall back to
57 other back-ends like `company-dabbrev-code`.
58
59 ## 2013-03-30 (0.6.5)
60
61 * Fixed keybindings when running in a terminal.
62 * `company-elisp-show-locals-first`: new customizable variable.
63 * `company-elisp` shows more accurate and comprehensive candidates list.
64
65 ## 2013-03-26 (0.6.4)
66
67 * `company-eclim` shows valid completions after an opening paren.
68 * Expanded template does not get removed until the point leaves it. After your
69 input the last argument in a method call expanded by `company-eclim`, you can
70 press `<tab>` once more, to jump after the closing paren. No other bundled
71 back-ends are affected.
72
73 ## 2013-03-25 (0.6.3)
74
75 * New tooltip face colors used on themes with light background.
76 * Pseudo-tooltip stays up-to-date when text is inserted after the point.
77 * Fixed `company-require-match` mechanics.
78
79 ## 2013-03-24 (0.6.2)
80
81 * `global-company-mode` is now autoloaded.
82
83 ## 2013-03-23 (0.6.1)
84
85 * Documented `init` and `post-completion` back-end commands.
86 * `company-eclim` and `company-clang` only expand the template on explicit user
87 action (such as `company-complete-{selection,number,mouse}`).
88 * `company-template` has some breaking changes. When point is at one of the
89 fields, it's displayed at the beginning, not right after it; `<tab>` jumps to
90 the next field, `forward-word` and `subword-forward` remappings are removed;
91 when you jump to the next field, if the current one hasn't been edited, the
92 overlay gets removed but the text remains.
93 * `company-eclim` shows method overloads and expands templates for calls.
94 * `company-clang-objc-templatify` does not insert spaces after colons anymore.
95 * `company-clang` is now only initialized in supported buffers.
96 So, no error messages if you don't have Clang until you open a C file.
97 * `company-clang` recognizes Clang included in recent Xcode.
98 * New commands `company-select-previous-or-abort` and
99 `company-select-next-or-abort`, bound to `<up>` and `<down>`.
100
101 ## 2013-03-19 (0.6)
102
103 * Across-the-board bugfixing.
104 * `company-pysmell` is not used by default anymore.
105 * Loading of `nxml`, `semantic`, `pymacs` and `ropemacs` is now deferred.
106 * Candidates from grouped back-ends are merged more conservatively: only
107 back-ends that return the same prefix at point are used.
108 * `company-clang` now shows meta information, too.
109 * Some performance improvements.
110 * Fixed two old tooltip annoyances.
111 * Instead of `overrriding-terminal-local-map`, we're now using
112 `emulation-mode-map-alists` (experimental). This largely means that when the
113 completion keymap is active, other minor modes' keymaps are still used, so,
114 for example, it's not as easy to accidentally circumvent `paredit-mode`
115 when it's enabled.
116 * `company-elisp` has seen some improvements.
117 * Added `company-capf`: completion adapter using
118 `completion-at-point-functions`. (Stefan Monnier)
119 * Clang completions now include macros and are case-sensitive.
120 * Switching between tag files now works correctly with `company-etags`.
121
122 ## 2010-02-24 (0.5)
123
124 * `company-ropemacs` now provides location and docs. (Fernando H. Silva)
125 * Added `company-with-candidate-inserted` macro.
126 * Added `company-clang` back-end.
127 * Added new mechanism for non-consecutive insertion.
128 (So far only used by clang for ObjC.)
129 * The semantic back-end now shows meta information for local symbols.
130 * Added compatibility for CEDET in Emacs 23.2 and from CVS. (Oleg Andreev)
131
132 ## 2009-05-07 (0.4.3)
133
134 * Added `company-other-backend`.
135 * Idle completion no longer interrupts multi-key command input.
136 * Added `company-ropemacs` and `company-pysmell` back-ends.
137
138 ## 2009-04-25 (0.4.2)
139
140 * In C modes . and -> now count towards `company-minimum-prefix-length`.
141 * Reverted default front-end back to `company-preview-if-just-one-frontend`.
142 * The pseudo tooltip will no longer be clipped at the right window edge.
143 * Added `company-tooltip-minimum`.
144 * Windows compatibility fixes.
145
146 ## 2009-04-19 (0.4.1)
147
148 * Added `global-company-mode`.
149 * Performance enhancements.
150 * Added `company-eclim` back-end.
151 * Added safer workaround for Emacs `posn-col-row` bug.
152
153 ## 2009-04-18 (0.4)
154
155 * Automatic completion is now aborted if the prefix gets too short.
156 * Added option `company-dabbrev-time-limit`.
157 * `company-backends` now supports merging back-ends.
158 * Added back-end `company-dabbrev-code` for generic code.
159 * Fixed `company-begin-with`.
160
161 ## 2009-04-15 (0.3.1)
162
163 * Added 'stop prefix to prevent dabbrev from completing inside of symbols.
164 * Fixed issues with tabbar-mode and line-spacing.
165 * Performance enhancements.
166
167 ## 2009-04-12 (0.3)
168
169 * Added `company-begin-commands` option.
170 * Added abbrev, tempo and Xcode back-ends.
171 * Back-ends are now interactive. You can start them with M-x backend-name.
172 * Added `company-begin-with` for starting company from elisp-code.
173 * Added hooks.
174 * Added `company-require-match` and `company-auto-complete` options.
175
176 ## 2009-04-05 (0.2.1)
177
178 * Improved Emacs Lisp back-end behavior for local variables.
179 * Added `company-elisp-detect-function-context` option.
180 * The mouse can now be used for selection.
181
182 ## 2009-03-22 (0.2)
183
184 * Added `company-show-location`.
185 * Added etags back-end.
186 * Added work-around for end-of-buffer bug.
187 * Added `company-filter-candidates`.
188 * More local Lisp variables are now included in the candidates.
189
190 ## 2009-03-21 (0.1.5)
191
192 * Fixed elisp documentation buffer always showing the same doc.
193 * Added `company-echo-strip-common-frontend`.
194 * Added `company-show-numbers` option and M-0 ... M-9 default bindings.
195 * Don't hide the echo message if it isn't shown.
196
197 ## 2009-03-20 (0.1)
198
199 * Initial release.