]> code.delx.au - gnu-emacs-elpa/blob - NEWS.md
company-eclim: Show overloads, insert call templates
[gnu-emacs-elpa] / NEWS.md
1 # History of user-visible changes
2
3 ## Next
4
5 * `company-eclim` shows method overloads and inserts call templates with placeholders.
6 * `company-clang` ObjC arguments template insertion now requires explicit user action.
7 * `company-clang-objc-templatify` does not insert spaces after colons anymore.
8 * `company-clang` is now only initialized in supported buffers.
9 So, no error messages if you don't have Clang until you open a C file.
10 * `company-clang` recognizes Clang included with recent Xcode.
11 * New commands `company-select-previous-or-abort` and
12 `company-select-next-or-abort`, bound to `<up>` and `<down>`.
13
14 ## 2013-03-19 (0.6)
15
16 * Across-the-board bugfixing.
17 * `company-pysmell` is not used by default anymore.
18 * Loading of `nxml`, `semantic`, `pymacs` and `ropemacs` is now deferred.
19 * Candidates from grouped back-ends are merged more conservatively: only
20 back-ends that return the same prefix at point are used.
21 * `company-clang` now shows meta information, too.
22 * Some performance improvements.
23 * Fixed two old tooltip annoyances.
24 * Instead of `overrriding-terminal-local-map`, we're now using
25 `emulation-mode-map-alists` (experimental). This largely means that when the
26 completion keymap is active, other minor modes' keymaps are still used, so,
27 for example, it's not as easy to accidentally circumvent `paredit-mode`
28 when it's enabled.
29 * `company-elisp` has seen some improvements.
30 * Added `company-capf`: completion adapter using
31 `completion-at-point-functions`. (Stefan Monnier)
32 * Clang completions now include macros and are case-sensitive.
33 * Switching between tag files now works correctly with `company-etags`.
34
35 ## 2010-02-24 (0.5)
36
37 * `company-ropemacs` now provides location and docs. (Fernando H. Silva)
38 * Added `company-with-candidate-inserted` macro.
39 * Added `company-clang` back-end.
40 * Added new mechanism for non-consecutive insertion.
41 (So far only used by clang for ObjC.)
42 * The semantic back-end now shows meta information for local symbols.
43 * Added compatibility for CEDET in Emacs 23.2 and from CVS. (Oleg Andreev)
44
45 ## 2009-05-07 (0.4.3)
46
47 * Added `company-other-backend`.
48 * Idle completion no longer interrupts multi-key command input.
49 * Added `company-ropemacs` and `company-pysmell` back-ends.
50
51 ## 2009-04-25 (0.4.2)
52
53 * In C modes . and -> now count towards `company-minimum-prefix-length`.
54 * Reverted default front-end back to `company-preview-if-just-one-frontend`.
55 * The pseudo tooltip will no longer be clipped at the right window edge.
56 * Added `company-tooltip-minimum`.
57 * Windows compatibility fixes.
58
59 ## 2009-04-19 (0.4.1)
60
61 * Added `global-company-mode`.
62 * Performance enhancements.
63 * Added `company-eclim` back-end.
64 * Added safer workaround for Emacs `posn-col-row` bug.
65
66 ## 2009-04-18 (0.4)
67
68 * Automatic completion is now aborted if the prefix gets too short.
69 * Added option `company-dabbrev-time-limit`.
70 * `company-backends` now supports merging back-ends.
71 * Added back-end `company-dabbrev-code` for generic code.
72 * Fixed `company-begin-with`.
73
74 ## 2009-04-15 (0.3.1)
75
76 * Added 'stop prefix to prevent dabbrev from completing inside of symbols.
77 * Fixed issues with tabbar-mode and line-spacing.
78 * Performance enhancements.
79
80 ## 2009-04-12 (0.3)
81
82 * Added `company-begin-commands` option.
83 * Added abbrev, tempo and Xcode back-ends.
84 * Back-ends are now interactive. You can start them with M-x backend-name.
85 * Added `company-begin-with` for starting company from elisp-code.
86 * Added hooks.
87 * Added `company-require-match` and `company-auto-complete` options.
88
89 ## 2009-04-05 (0.2.1)
90
91 * Improved Emacs Lisp back-end behavior for local variables.
92 * Added `company-elisp-detect-function-context` option.
93 * The mouse can now be used for selection.
94
95 ## 2009-03-22 (0.2)
96
97 * Added `company-show-location`.
98 * Added etags back-end.
99 * Added work-around for end-of-buffer bug.
100 * Added `company-filter-candidates`.
101 * More local Lisp variables are now included in the candidates.
102
103 ## 2009-03-21 (0.1.5)
104
105 * Fixed elisp documentation buffer always showing the same doc.
106 * Added `company-echo-strip-common-frontend`.
107 * Added `company-show-numbers` option and M-0 ... M-9 default bindings.
108 * Don't hide the echo message if it isn't shown.
109
110 ## 2009-03-20 (0.1)
111
112 * Initial release.