Skip to content

Commit bdd024f

Browse files
Fritz Mehnervim-scripts
Fritz Mehner
authored andcommitted
Version 5.16
- Plugin loads faster: loading the templates is delayed until the first use. - Plugin now works with pathogen.vim. - Menus will always be generated (for the use with :emenu). - Bugfix: no local templates available with a system-wide installation (thanks to Iain Arnell). - Several improvements.
1 parent 8cf9c5d commit bdd024f

File tree

9 files changed

+135
-459
lines changed

9 files changed

+135
-459
lines changed

README.csupport

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README for c.vim (Version 5.15) / September 11 2011
1+
README for c.vim (Version 5.16) / November 05 2011
22

33
* DESCRIPTION
44
* INSTALLATION
@@ -147,15 +147,13 @@ Any problems ? See the TROUBLESHOOTING section at the end of the help file
147147
'doc/csupport.txt'.
148148

149149
================================================================================
150-
RELEASE NOTES FOR VERSION 5.15
150+
RELEASE NOTES FOR VERSION 5.16
151151
================================================================================
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.
159157

160158
OLDER RELEASE NOTES : see file 'ChangeLog'
161159

c-support/wordlists/c-c++-keywords.list

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,16 @@ EXIT_FAILURE
4949
EXIT_SUCCESS
5050
size_t
5151

52+
alignas
53+
alignof
5254
bool
5355
catch
56+
char16_t
57+
char32_t
5458
class
59+
constexpr
5560
const_cast
61+
decltype
5662
delete
5763
dynamic_cast
5864
explicit
@@ -61,14 +67,19 @@ false
6167
friend
6268
mutable
6369
namespace
70+
new
71+
neexcept
72+
nullptr
6473
operator
6574
private
6675
protected
6776
public
6877
reinterpret_cast
78+
static_assert
6979
static_cast
7080
template
7181
this
82+
thread_local
7283
throw
7384
true
7485
typeid
@@ -178,7 +189,6 @@ locale
178189

179190
map
180191
memory
181-
new
182192
numeric
183193
ostream
184194
queue

doc/ChangeLog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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+
112
================================================================================
213
RELEASE NOTES FOR VERSION 5.14
314
================================================================================

doc/c-hotkeys.pdf

198 Bytes
Binary file not shown.

doc/c-hotkeys.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
%% Copyright: Copyright (C) 2006-2010 Dr.-Ing. Fritz Mehner (mehner@fh-swf.de)
1111
%% Version: 1.0
1212
%% 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 $
1414
%%
1515
%% Notes:
1616
%%
@@ -28,8 +28,8 @@
2828

2929
\setlength\parindent{0pt}
3030

31-
\newcommand{\Pluginversion}{5.15}
32-
\newcommand{\ReleaseDate}{ September 2011}
31+
\newcommand{\Pluginversion}{5.16}
32+
\newcommand{\ReleaseDate}{ November 2011}
3333
\newcommand{\Rep}{{\tiny{[n]}}}
3434

3535
%%----------------------------------------------------------------------
@@ -214,7 +214,7 @@
214214
\scriptsize{%
215215
\vspace{10mm}
216216
\hrulefill\\
217-
$^1$ {systemwide installation only}\\
217+
$^1$ {system-wide installation only}\\
218218
}%
219219
\end{minipage}\\
220220
%

doc/csupport.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
*csupport.txt* C/C++ Support September 11 2011
1+
*csupport.txt* C/C++ Support November 05 2011
22

33
C/C++ Support *c-support* *csupport*
4-
Plugin version 5.15
4+
Plugin version 5.16
55
for Vim version 7.0 and above
66
Fritz Mehner <mehner@fh-swf.de>
77

hotkeys.latex/c-hotkeys.pdf

-37.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)