comparison runtime/doc/syntax.txt @ 829:dc8197342755 v7.0d04

updated for version 7.0d04
author vimboss
date Fri, 14 Apr 2006 20:42:25 +0000
parents 01583c79d5f4
children c76f780d4e05
comparison
equal deleted inserted replaced
828:01583c79d5f4 829:dc8197342755
1 *syntax.txt* For Vim version 7.0d. Last change: 2006 Apr 06 1 *syntax.txt* For Vim version 7.0d. Last change: 2006 Apr 14
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1346 By default, the language features highlighted conform to Compiler 1346 By default, the language features highlighted conform to Compiler
1347 version 6.30 and Library version 6.11. If you are using an older 1347 version 6.30 and Library version 6.11. If you are using an older
1348 Inform development environment, you may with to add this to your 1348 Inform development environment, you may with to add this to your
1349 startup sequence: > 1349 startup sequence: >
1350 :let inform_highlight_old=1 1350 :let inform_highlight_old=1
1351
1352 IDL *idl.vim* *idl-syntax*
1353
1354 IDL (Interface Definition Language) files are used to define RPC calls. In
1355 Microsoft land, this is also used for defining COM interfaces and calls.
1356
1357 IDL's structure is simple enough to permit a full grammar based approach to
1358 rather than using a few heuristics. The result is large and somewhat
1359 repetative but seems to work.
1360
1361 There are some Microsoft extensions to idl files that are here. Some of them
1362 are disabled by defining idl_no_ms_extensions.
1363
1364 The more complex of the extensions are disabled by defining idl_no_extensions.
1365
1366 Variable Effect ~
1367
1368 idl_no_ms_extensions Disable some of the Microsoft specific
1369 extensions
1370 idl_no_extensions Disable complex extensions
1371 idlsyntax_showerror Show IDL errors (can be rather intrusive, but
1372 quite helpful)
1373 idlsyntax_showerror_soft Use softer colours by default for errors
1351 1374
1352 1375
1353 JAVA *java.vim* *ft-java-syntax* 1376 JAVA *java.vim* *ft-java-syntax*
1354 1377
1355 The java.vim syntax highlighting file offers several options: 1378 The java.vim syntax highlighting file offers several options: