File tree 9 files changed +135
-459
lines changed 9 files changed +135
-459
lines changed Original file line number Diff line number Diff line change 1
- README for c.vim (Version 5.15 ) / September 11 2011
1
+ README for c.vim (Version 5.16 ) / November 05 2011
2
2
3
3
* DESCRIPTION
4
4
* INSTALLATION
@@ -147,15 +147,13 @@ Any problems ? See the TROUBLESHOOTING section at the end of the help file
147
147
'doc/csupport.txt'.
148
148
149
149
================================================================================
150
- RELEASE NOTES FOR VERSION 5.15
150
+ RELEASE NOTES FOR VERSION 5.16
151
151
================================================================================
152
- - New hotkey \cx C to C++ comments and vice versa.
153
- - Several hotkeys allow a range, e.g. '3\cl' (see help text and c-hotkey.pdf).
154
- - Improved prototype picking: \nf, \np picks up a function prototype,
155
- \nm picks up a method prototype (see documentation for more).
156
- - include-statements will now be inserted in the actual line (before: new line
157
- below the actual line).
158
- - Several minor improvements.
152
+ - Plugin loads faster: loading the templates is delayed until the first use.
153
+ - Plugin now works with pathogen.vim.
154
+ - Menus will always be generated (for the use with :emenu).
155
+ - Bugfix: no local templates available with a system-wide installation (thanks to Iain Arnell).
156
+ - Several improvements.
159
157
160
158
OLDER RELEASE NOTES : see file 'ChangeLog'
161
159
Original file line number Diff line number Diff line change @@ -49,10 +49,16 @@ EXIT_FAILURE
49
49
EXIT_SUCCESS
50
50
size_t
51
51
52
+ alignas
53
+ alignof
52
54
bool
53
55
catch
56
+ char16_t
57
+ char32_t
54
58
class
59
+ constexpr
55
60
const_cast
61
+ decltype
56
62
delete
57
63
dynamic_cast
58
64
explicit
@@ -61,14 +67,19 @@ false
61
67
friend
62
68
mutable
63
69
namespace
70
+ new
71
+ neexcept
72
+ nullptr
64
73
operator
65
74
private
66
75
protected
67
76
public
68
77
reinterpret_cast
78
+ static_assert
69
79
static_cast
70
80
template
71
81
this
82
+ thread_local
72
83
throw
73
84
true
74
85
typeid
@@ -178,7 +189,6 @@ locale
178
189
179
190
map
180
191
memory
181
- new
182
192
numeric
183
193
ostream
184
194
queue
Original file line number Diff line number Diff line change
1
+ ================================================================================
2
+ RELEASE NOTES FOR VERSION 5.15
3
+ ================================================================================
4
+ - New hotkey \cx C to C++ comments and vice versa.
5
+ - Several hotkeys allow a range, e.g. '3\cl' (see help text and c-hotkey.pdf).
6
+ - Improved prototype picking: \nf, \np picks up a function prototype,
7
+ \nm picks up a method prototype (see documentation for more).
8
+ - include-statements will now be inserted in the actual line (before: new line
9
+ below the actual line).
10
+ - Several minor improvements.
11
+
1
12
================================================================================
2
13
RELEASE NOTES FOR VERSION 5.14
3
14
================================================================================
Original file line number Diff line number Diff line change 10
10
% % Copyright: Copyright (C) 2006-2010 Dr.-Ing. Fritz Mehner (mehner@fh-swf.de)
11
11
% % Version: 1.0
12
12
% % Created: 10.11.2006
13
- % % Revision: $Id: c-hotkeys.tex,v 1.45 2011/09/11 17:12:33 mehner Exp $
13
+ % % Revision: $Id: c-hotkeys.tex,v 1.46 2011/11/05 14:58:35 mehner Exp $
14
14
% %
15
15
% % Notes:
16
16
% %
28
28
29
29
\setlength\parindent {0pt}
30
30
31
- \newcommand {\Pluginversion }{5.15 }
32
- \newcommand {\ReleaseDate }{ September 2011}
31
+ \newcommand {\Pluginversion }{5.16 }
32
+ \newcommand {\ReleaseDate }{ November 2011}
33
33
\newcommand {\Rep }{{\tiny {[n]}}}
34
34
35
35
% %----------------------------------------------------------------------
214
214
\scriptsize {%
215
215
\vspace {10mm}
216
216
\hrulefill \\
217
- $ ^1 $ {systemwide installation only}\\
217
+ $ ^1 $ {system-wide installation only}\\
218
218
}%
219
219
\end {minipage }\\
220
220
%
Original file line number Diff line number Diff line change 1
- *csupport.txt* C/C++ Support September 11 2011
1
+ *csupport.txt* C/C++ Support November 05 2011
2
2
3
3
C/C++ Support *c-support* *csupport*
4
- Plugin version 5.15
4
+ Plugin version 5.16
5
5
for Vim version 7.0 and above
6
6
Fritz Mehner <mehner@fh-swf.de>
7
7
You can’t perform that action at this time.
0 commit comments