comparison runtime/doc/syntax.txt @ 8:7edf9b6e4c36

Various changes
author vimboss
date Wed, 16 Jun 2004 11:19:22 +0000
parents 3fc0f57ecb91
children 4102fb4ea781
comparison
equal deleted inserted replaced
7:3fc0f57ecb91 8:7edf9b6e4c36
1 *syntax.txt* For Vim version 7.0aa. Last change: 2004 Jun 09 1 *syntax.txt* For Vim version 7.0aa. Last change: 2004 Jun 15
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1346 declarations to be highlighted create your own definitions by changing the 1346 declarations to be highlighted create your own definitions by changing the
1347 definitions in java.vim or by creating your own java.vim which includes the 1347 definitions in java.vim or by creating your own java.vim which includes the
1348 original one and then adds the code to highlight functions. 1348 original one and then adds the code to highlight functions.
1349 1349
1350 In java 1.1 the functions System.out.println() and System.err.println() should 1350 In java 1.1 the functions System.out.println() and System.err.println() should
1351 only be used for debugging. Therefor it is possible to highlight debugging 1351 only be used for debugging. Therefore it is possible to highlight debugging
1352 statements differently. To do this you must add the following definition in 1352 statements differently. To do this you must add the following definition in
1353 your startup file: > 1353 your startup file: >
1354 :let java_highlight_debug=1 1354 :let java_highlight_debug=1
1355 The result will be that those statements are highlighted as 'Special' 1355 The result will be that those statements are highlighted as 'Special'
1356 characters. If you prefer to have them highlighted differently you must define 1356 characters. If you prefer to have them highlighted differently you must define