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