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