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