]> code.delx.au - gnu-emacs-elpa/blob - NEWS.md
Update NEWS.md
[gnu-emacs-elpa] / NEWS.md
1 # History of user-visible changes
2
3 ## Next
4
5 * `company-search-toggle-filtering` replaced `company-search-kill-others`.
6 * Quitting the search mode resets the filtering.
7 * Pressing `backspace` in the search mode deletes the character at the end of
8 the search string.
9 * `company-semantic` displays function arguments as annotations.
10 * New user option, `company-bbdb-modes`.
11 * `company-show-numbers` and `company-complete-number` now use visual numbering
12 of the candidates, taking into account only the ones currently displayed.
13 * `company-complete-number` can be bound to keypad numbers directly, with or
14 without modifiers.
15 * `company-cmake` expands `<LANG>` and `<CONFIG>` placeholders inside variable
16 names.
17
18 ## 2014-10-15 (0.8.6)
19
20 * `company-clang` and `company-template-c-like-templatify` support templated
21 functions and arguments.
22 * `company-dabbrev` ignores "uninteresting" buffers by default. Depends on the
23 new user option, `company-dabbrev-ignore-buffers`.
24 * `company-files` checks directory's last modification time.
25 * `company-files` supports relative paths and Windows drive letters.
26
27 ## 2014-08-13 (0.8.4)
28
29 * `company-ropemacs` is only used when `ropemacs-mode` is on.
30 * `company-gtags` is enabled in all `prog-mode` derivatives by default.
31 * `company-end-of-buffer-workaround` is not used anymore.
32 * `company-begin-commands` includes some of `cc-mode` commands.
33
34 ## 2014-08-27 (0.8.3)
35
36 * On Emacs 24.4 or newer, tooltip positioning takes line-spacing into account.
37 * New face `company-tooltip-search`, used for the search string in the tooltip.
38 * The default value of `company-dabbrev-minimum-length` is set to 4, independent
39 of the `company-minimum-prefix-length` value.
40
41 ## 2014-07-26 (0.8.2)
42
43 * New user option `company-occurrence-weight-function`, allowing to tweak the
44 behavior of the transformer `company-sort-by-occurrence`.
45 * Setting `company-idle-delay` to `t` is deprecated. Use the value 0 instead.
46
47 ## 2014-07-01 (0.8.1)
48
49 * `company-require-match` is not in effect when the new input doesn't continue
50 the previous prefix, and that prefix was a match.
51 * The meaning of `company-begin-commands` value t has slightly changed.
52 * New transformer, `company-sort-by-backend-importance`.
53 * When grouped back-ends are used, the back-end of the current candidate is
54 indicated in the mode-line, enclosed in angle brackets.
55 * New user option `company-gtags-insert-arguments`, t by default.
56 * `company-css` knows about CSS3.
57 * `company-gtags` supports `meta` and `annotation`.
58 * User option `company-dabbrev-code-other-buffers` can have a new value: `code`.
59 * New user option `company-tooltip-flip-when-above`.
60 * `company-clang` uses the standard header search paths by default.
61 * `C-h` is bound to `company-show-doc-buffer` (like `f1`).
62
63 ## 2014-04-19 (0.8.0)
64
65 * `company-capf` is included in `company-backends` in any supported Emacs
66 version (>= 24.1). `company-elisp` goes before it if Emacs version is < 24.4.
67 * New user option `company-clang-insert-arguments`, by default t.
68 * Default value of `company-idle-delay` lowered to `0.5`.
69 * New user option `company-tooltip-minimum-width`, by default 0.
70 * New function `company-grab-symbol-cons`.
71 * `company-clang` fetches completion candidates asynchronously.
72 * Added support for asynchronous back-ends (experimental).
73 * Support for back-end command `crop` dropped (it was never documented).
74 * Support for Emacs 23 dropped.
75 * New user option `company-abort-manual-when-too-short`.
76
77 ## 2014-03-25 (0.7.3)
78
79 * New user option `company-etags-ignore-case`.
80
81 ## 2014-03-19 (0.7.2)
82
83 * Support for Emacs 22 officially dropped.
84 * `company-clang` supports `indent-tabs-mode` and multibyte chars before point.
85
86 ## 2014-03-18 (0.7.1)
87
88 * Group of back-ends can now contain keyword `:with`, which makes all back-ends
89 after it to be skipped for prefix calculation.
90 * New function `company-version`.
91 * New bundled back-end `company-yasnippet`.
92 * Completion candidates returned from grouped back-ends are tagged to remember
93 which back-end each came from.
94 * New user option `company-tooltip-align-annotations`, off by default.
95 * New bundled back-end `company-bbdb`.
96
97 ## 2014-02-18 (0.7)
98
99 * New back-end command, `match`, for non-prefix completion.
100 * New user option `company-continue-commands`. The default value aborts
101 completion on buffer saving commands.
102 * New back-end command, `annotation`, for text displayed inline in the popup
103 that's not a part of completion candidate.
104 * `company-capf`, `company-clang` and `company-eclim` use `annotation`.
105 * `company-preview*` faces inherit from `company-tooltip-selection` and
106 `company-tooltip-common-selection` on light themes.
107 * New user option `company-transformers`.
108 * First transformer, `company-sort-by-occurrence`.
109 * New user options controlling `company-dabbrev` and `company-dabbrev-code`.
110
111 ## 2014-01-25 (0.6.14)
112
113 * The tooltip front-end is rendered with scrollbar, controlled by the user
114 option `company-tooltip-offset-display`.
115 * The tooltip front-end is rendered with margins, controlled by the user option
116 `company-tooltip-margin`.
117
118 ## 2014-01-14 (0.6.13)
119
120 * Experimental support for non-prefix completion.
121 * Starting with Emacs version 24.4, `company-capf` is included in
122 `company-backends` and replaces `company-elisp`.
123 * `company-capf` supports completion tables that return non-default boundaries.
124 * `company-elisp` is enabled in `inferior-emacs-lisp-mode`.
125
126 ## 2013-09-28 (0.6.12)
127
128 * Default value of `company-begin-commands` changed to `(self-insert-command)`.
129 * Futher improvement in `org-indent-mode` compatibility.
130
131 ## 2013-08-18 (0.6.11)
132
133 * `company-template-c-like-templatify` removes all text after closing paren, for
134 use in backends that display additional info there.
135 * `company-cmake` is now bundled.
136 * Better `linum` compatibility in Emacs <= 24.2.
137 * `company-global-modes`: New option.
138
139 ## 2013-05-26 (0.6.10)
140
141 * Plays nicer with `org-indent-mode`.
142 * Works in horizontally scrolled windows.
143
144 ## 2013-05-10 (0.6.9)
145
146 * `company-capf` respects `:exit-function` completion property.
147 * `company-backends`: `prefix` command can return `t` in the cdr.
148 * `company-clang-begin-after-member-access`: New option.
149 * Mouse click outside the tooltip aborts completion.
150 * `company-clang` uses standard input to pass the contents of current buffer to
151 Clang 2.9+, otherwise saves the buffer and passes the path to the file.
152 * `company-clang-auto-save` option has been removed.
153 * Better interaction with `outline-minor-mode`.
154 * `company-dabbrev-code` supports all `prog-mode` derivatives.
155
156 ## 2013-04-16 (0.6.8)
157
158 * `company-auto-complete` is disabled by default.
159 * `company-auto-complete-chars` default value includes fewer syntax classes.
160 * In expanded function calls, arguments skipped by the user default to "argN".
161 * `company-eclim` and `company-clang` do not strip argument types from fields.
162 * `company-clang` expands function calls for all three modes now.
163 * `company-clang` supports `c++-mode` by default.
164
165 ## 2013-04-05 (0.6.7)
166
167 * Two `company-elisp` tweaks.
168
169 ## 2013-04-01 (0.6.6)
170
171 * `company-elisp` doesn't offer completions when typing the name and the
172 arguments of a new function or macro definition, allowing to fall back to
173 other back-ends like `company-dabbrev-code`.
174
175 ## 2013-03-30 (0.6.5)
176
177 * Fixed keybindings when running in a terminal.
178 * `company-elisp-show-locals-first`: new customizable variable.
179 * `company-elisp` shows more accurate and comprehensive candidates list.
180
181 ## 2013-03-26 (0.6.4)
182
183 * `company-eclim` shows valid completions after an opening paren.
184 * Expanded template does not get removed until the point leaves it. After your
185 input the last argument in a method call expanded by `company-eclim`, you can
186 press `<tab>` once more, to jump after the closing paren. No other bundled
187 back-ends are affected.
188
189 ## 2013-03-25 (0.6.3)
190
191 * New tooltip face colors used on themes with light background.
192 * Pseudo-tooltip stays up-to-date when text is inserted after the point.
193 * Fixed `company-require-match` mechanics.
194
195 ## 2013-03-24 (0.6.2)
196
197 * `global-company-mode` is now autoloaded.
198
199 ## 2013-03-23 (0.6.1)
200
201 * Documented `init` and `post-completion` back-end commands.
202 * `company-eclim` and `company-clang` only expand the template on explicit user
203 action (such as `company-complete-{selection,number,mouse}`).
204 * `company-template` has some breaking changes. When point is at one of the
205 fields, it's displayed at the beginning, not right after it; `<tab>` jumps to
206 the next field, `forward-word` and `subword-forward` remappings are removed;
207 when you jump to the next field, if the current one hasn't been edited, the
208 overlay gets removed but the text remains.
209 * `company-eclim` shows method overloads and expands templates for calls.
210 * `company-clang-objc-templatify` does not insert spaces after colons anymore.
211 * `company-clang` is now only initialized in supported buffers.
212 So, no error messages if you don't have Clang until you open a C file.
213 * `company-clang` recognizes Clang included in recent Xcode.
214 * New commands `company-select-previous-or-abort` and
215 `company-select-next-or-abort`, bound to `<up>` and `<down>`.
216
217 ## 2013-03-19 (0.6)
218
219 * Across-the-board bugfixing.
220 * `company-pysmell` is not used by default anymore.
221 * Loading of `nxml`, `semantic`, `pymacs` and `ropemacs` is now deferred.
222 * Candidates from grouped back-ends are merged more conservatively: only
223 back-ends that return the same prefix at point are used.
224 * `company-clang` now shows meta information, too.
225 * Some performance improvements.
226 * Fixed two old tooltip annoyances.
227 * Instead of `overrriding-terminal-local-map`, we're now using
228 `emulation-mode-map-alists` (experimental). This largely means that when the
229 completion keymap is active, other minor modes' keymaps are still used, so,
230 for example, it's not as easy to accidentally circumvent `paredit-mode`
231 when it's enabled.
232 * `company-elisp` has seen some improvements.
233 * Added `company-capf`: completion adapter using
234 `completion-at-point-functions`. (Stefan Monnier)
235 * Clang completions now include macros and are case-sensitive.
236 * Switching between tag files now works correctly with `company-etags`.
237
238 ## 2010-02-24 (0.5)
239
240 * `company-ropemacs` now provides location and docs. (Fernando H. Silva)
241 * Added `company-with-candidate-inserted` macro.
242 * Added `company-clang` back-end.
243 * Added new mechanism for non-consecutive insertion.
244 (So far only used by clang for ObjC.)
245 * The semantic back-end now shows meta information for local symbols.
246 * Added compatibility for CEDET in Emacs 23.2 and from CVS. (Oleg Andreev)
247
248 ## 2009-05-07 (0.4.3)
249
250 * Added `company-other-backend`.
251 * Idle completion no longer interrupts multi-key command input.
252 * Added `company-ropemacs` and `company-pysmell` back-ends.
253
254 ## 2009-04-25 (0.4.2)
255
256 * In C modes . and -> now count towards `company-minimum-prefix-length`.
257 * Reverted default front-end back to `company-preview-if-just-one-frontend`.
258 * The pseudo tooltip will no longer be clipped at the right window edge.
259 * Added `company-tooltip-minimum`.
260 * Windows compatibility fixes.
261
262 ## 2009-04-19 (0.4.1)
263
264 * Added `global-company-mode`.
265 * Performance enhancements.
266 * Added `company-eclim` back-end.
267 * Added safer workaround for Emacs `posn-col-row` bug.
268
269 ## 2009-04-18 (0.4)
270
271 * Automatic completion is now aborted if the prefix gets too short.
272 * Added option `company-dabbrev-time-limit`.
273 * `company-backends` now supports merging back-ends.
274 * Added back-end `company-dabbrev-code` for generic code.
275 * Fixed `company-begin-with`.
276
277 ## 2009-04-15 (0.3.1)
278
279 * Added 'stop prefix to prevent dabbrev from completing inside of symbols.
280 * Fixed issues with tabbar-mode and line-spacing.
281 * Performance enhancements.
282
283 ## 2009-04-12 (0.3)
284
285 * Added `company-begin-commands` option.
286 * Added abbrev, tempo and Xcode back-ends.
287 * Back-ends are now interactive. You can start them with M-x backend-name.
288 * Added `company-begin-with` for starting company from elisp-code.
289 * Added hooks.
290 * Added `company-require-match` and `company-auto-complete` options.
291
292 ## 2009-04-05 (0.2.1)
293
294 * Improved Emacs Lisp back-end behavior for local variables.
295 * Added `company-elisp-detect-function-context` option.
296 * The mouse can now be used for selection.
297
298 ## 2009-03-22 (0.2)
299
300 * Added `company-show-location`.
301 * Added etags back-end.
302 * Added work-around for end-of-buffer bug.
303 * Added `company-filter-candidates`.
304 * More local Lisp variables are now included in the candidates.
305
306 ## 2009-03-21 (0.1.5)
307
308 * Fixed elisp documentation buffer always showing the same doc.
309 * Added `company-echo-strip-common-frontend`.
310 * Added `company-show-numbers` option and M-0 ... M-9 default bindings.
311 * Don't hide the echo message if it isn't shown.
312
313 ## 2009-03-20 (0.1)
314
315 * Initial release.