Skip to content

Commit 8cacf35

Browse files
committed
updated for version 7.0d05
1 parent c6249bb commit 8cacf35

3 files changed

Lines changed: 63 additions & 19 deletions

File tree

runtime/doc/syntax.txt

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*syntax.txt* For Vim version 7.0d. Last change: 2006 Apr 14
1+
*syntax.txt* For Vim version 7.0d. Last change: 2006 Apr 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -856,6 +856,53 @@ is used by default. You may select the former with the following line: >
856856
If this variable is undefined or zero, btm syntax is selected.
857857

858858

859+
DOXYGEN *doxygen.vim* *doxygen-syntax*
860+
861+
Doxygen generates code documentation using a special documentation format
862+
(similar to Javadoc). This syntax script adds doxygen highlighting to c, cpp
863+
and idl files, and should also work with java.
864+
865+
There are a few of ways to turn on doxygen formatting. It can be done explicity
866+
or in a modeline by appending '.doxygen' to the syntax of the file. Example: >
867+
:set syntax=c.doxygen
868+
or >
869+
// vim:syntax=c.doxygen
870+
871+
To use doxygen formatting on top of any filetype, add the following to your
872+
.vimrc for each filetype, replacing {filetype} with the relevent value. >
873+
:let g:syntax_extra_{filetype}='doxygen'
874+
875+
It can also be done automaticly for c, cpp and idl files by setting the global
876+
or buffer-local variable load_doxygen_syntax. This is done by adding the
877+
following to your .vimrc. >
878+
:let g:load_doxygen_syntax=1
879+
880+
There are a couple of variables that have an affect on syntax highlighting, and
881+
are to do with non-standard highlighting options.
882+
883+
Variable Default Effect ~
884+
g:doxygen_enhanced_color
885+
g:doxygen_enhanced_colour 0 Use non-standard highlighting for
886+
doxygen comments.
887+
888+
doxygen_my_rendering 0 Disable rendering of HTML bold, italic
889+
and html_my_rendering underline.
890+
891+
doxygen_javadoc_autobrief 1 Set to 0 to disable javadoc autobrief
892+
colour highlighting.
893+
894+
doxygen_end_punctuation '[.]' Set to regexp match for the ending
895+
punctuation of brief
896+
897+
There are also some hilight groups worth mentioning as they can be useful in
898+
configuration.
899+
900+
Highlight Effect ~
901+
doxygenErrorComment The colour of an end-comment when missing
902+
punctuation in a code, verbatim or dot section
903+
doxygenLinkError The colour of an end-comment when missing the
904+
\endlink from a \link section.
905+
859906

860907
DTD *dtd.vim* *ft-dtd-syntax*
861908

runtime/doc/todo.txt

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.0d. Last change: 2006 Apr 14
1+
*todo.txt* For Vim version 7.0d. Last change: 2006 Apr 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -30,8 +30,6 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
3030
*known-bugs*
3131
-------------------- Known bugs and current work -----------------------
3232

33-
Do some of the 'cindent' bugs below.
34-
3533
Add more tests for all new functionality in Vim 7. Especially new functions.
3634

3735
Win32: Describe how to do debugging. (George Reilly)
@@ -61,11 +59,8 @@ Awaiting updated patches:
6159
- Patch for 'breakindent' option: repeat indent for wrapped line. (Vaclav
6260
Smilauer, 2004 Sep 13, fix Oct 31)
6361
Asked for improvements 2004 Dec 20.
64-
7 Make "5dd" on last-but-one-line not delete anything (Vi compatible).
65-
Add flag in 'cpoptions' for this. When not present, "2dd" in the last
66-
line should delete the last line. Patch from greenx 2002 Apr 11.
6762
8 Add a few more command names to the menus. Patch from Jiri Brezina
68-
(28 feb 2002).
63+
(28 feb 2002). Will mess the translations...
6964
7 ATTENTION dialog choices are more logical when "Delete it' appears
7065
before "Quit". Patch by Robert Webb, 2004 May 3.
7166
- Include flipcase patch: ~/vim/patches/wall.flipcase2 ? Make it work
@@ -90,7 +85,7 @@ Awaiting updated patches:
9085
Update 2004 Sep 10
9186
Another patch from Edward L. Fox (2005 Nov 24)
9287
Search in 'runtimepath'?
93-
More docs about how to use this.
88+
More docs needed about how to use this.
9489
How to get the messages into the .po files?
9590
confirm() add "flags" argument, with 'v' for vertical
9691
layout and 'c' for console dialog. (Haegg)
@@ -105,8 +100,8 @@ Awaiting updated patches:
105100
quickfix window (2004 dec 2)
106101
7 When 'rightleft' is set, the search pattern should be displayed right
107102
to left as well? See patch of Dec 26. (Nadim Shaikli)
108-
8 Lock all used memory so that it doesn't get swapped to disk (uncrypted).
109-
Patch by Jason Holt, 2003 May 23. Uses mlock.
103+
8 Option to lock all used memory so that it doesn't get swapped to disk
104+
(uncrypted). Patch by Jason Holt, 2003 May 23. Uses mlock.
110105
7 Support a stronger encryption. Jason Holt implemented AES (May 6 2003).
111106
7 Add ! register, for shell commands. (patch from Grenie)
112107
8 In the gzip plugin, also recognize *.gz.orig, *.gz.bak, etc. Like it's
@@ -191,9 +186,6 @@ Vi incompatibility:
191186

192187

193188
GTK+ 1 (OK in GTK 2):
194-
8 When menus are disabled, 'm' removed from 'guioptions', Alt-F still pops
195-
up the File menu. Cannot reproduce this: gives a warning for a NULL
196-
pointer if the menu was never displayed.
197189
8 When using "gvim -geom 40x30" or setting 'columns' in .gvimrc or with a
198190
GUIEnter autocommand, the width is still set to fit the toolbar. Also
199191
happens when changing the font. How to avoid that the toolbar specifies
@@ -1841,10 +1833,6 @@ Tags:
18411833
":idselect", which uses an "ID" database (made by "mkid") like "tselect".
18421834

18431835

1844-
Security:
1845-
- nothing at the moment
1846-
1847-
18481836
Win32 GUI:
18491837
8 Make debug mode work while starting up (vim -D). Open console window for
18501838
the message and input?
@@ -2239,6 +2227,7 @@ Insert mode:
22392227
'cindent', 'smartindent':
22402228
8 Java: Inside an anonymous class, after an "else" or "try" the indent is
22412229
too small. (Vincent Bergbauer)
2230+
Problem of using {} inside (), 'cindent' doesn't work then.
22422231
8 In C++ it's possible to have {} inside (): (Kirshna)
22432232
func(
22442233
new String[] {

runtime/doc/version7.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version7.txt* For Vim version 7.0d. Last change: 2006 Apr 14
1+
*version7.txt* For Vim version 7.0d. Last change: 2006 Apr 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -900,6 +900,7 @@ dictconf and dictdconf syntax, indent and ftplugin files. (Nikolai Weibull)
900900
diff ftplugin file. (Bram Moolenaar)
901901
dircolors ftplugin file. (Nikolai Weibull)
902902
django and htmldjango syntax file. (Dave Hodder)
903+
doxygen syntax file. (Michael Geddes)
903904
elinks ftplugin file. (Nikolai Weibull)
904905
eterm ftplugin file. (Nikolai Weibull)
905906
eviews syntax file. (Vaidotas Zemlys)
@@ -964,6 +965,7 @@ SQL indent file.
964965
SQL-Informix syntax file. (Dean L Hill)
965966
SQL: Handling of various variants. (David Fishburn)
966967
sshconfig ftplugin file. (Nikolai Weibull)
968+
Stata and SMCL syntax files. (Jeff Pitblado)
967969
sudoers ftplugin file. (Nikolai Weibull)
968970
sysctl syntax and ftplugin file. (Nikolai Weibull)
969971
terminfo ftplugin file. (Nikolai Weibull)
@@ -2488,4 +2490,10 @@ Added the 'm' flag to 'cinoptions'.
24882490
Win32: Make the "gvim --help" window appear in the middle of the screen
24892491
instead of at an arbitrary position. (Randall W. Morris)
24902492

2493+
Added gettabwinvar() and settabwinvar().
2494+
2495+
Command line completion: pressing <Tab> after ":e /usr/*" expands the whole
2496+
tree, because it becomes ":e /usr/**". Don't add a star if there already is
2497+
one.
2498+
24912499
vim:tw=78:ts=8:ft=help:norl:

0 commit comments

Comments
 (0)