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