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