comparison runtime/doc/syntax.txt @ 844:d3bbb5dd3913 v7.0f02

updated for version 7.0f02
author vimboss
date Thu, 27 Apr 2006 00:02:13 +0000
parents a209672376fd
children db44f7b81373
comparison
equal deleted inserted replaced
843:9f279ebda751 844:d3bbb5dd3913
1 *syntax.txt* For Vim version 7.0f. Last change: 2006 Apr 24 1 *syntax.txt* For Vim version 7.0f. Last change: 2006 Apr 26
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
606 :let g:filetype_asa = "aspperl" 606 :let g:filetype_asa = "aspperl"
607 :let g:filetype_asp = "aspperl" 607 :let g:filetype_asp = "aspperl"
608 For Visual Basic use: > 608 For Visual Basic use: >
609 :let g:filetype_asa = "aspvbs" 609 :let g:filetype_asa = "aspvbs"
610 :let g:filetype_asp = "aspvbs" 610 :let g:filetype_asp = "aspvbs"
611
612
613 BAAN *baan.vim* *baan-syntax*
614
615 The baan.vim gives syntax support for BaanC of release BaanIV upto SSA ERP LN
616 for both 3 GL and 4 GL programming. Large number of standard defines/constants
617 are supported.
618
619 Some special violation of coding standards will be signalled when one specify
620 in ones |.vimrc|: >
621 let baan_code_stds=1
622
623 *baan-folding*
624
625 Syntax folding can be enabled at various levels through the variables
626 mentioned below (Set those in your |.vimrc|). The more complex folding on
627 source blocks and SQL can be CPU intensive.
628
629 To allow any folding and enable folding at function level use: >
630 let baan_fold=1
631 Folding can be enabled at source block level as if, while, for ,... The
632 indentation preceding the begin/end keywords has to match (spaces are not
633 considered equal to a tab). >
634 let baan_fold_block=1
635 Folding can be enabled for embedded SQL blocks as SELECT, SELECTDO,
636 SELECTEMPTY, ... The indentation preceding the begin/end keywords has to
637 match (spaces are not considered equal to a tab). >
638 let baan_fold_sql=1
639 Note: Block folding can result in many small folds. It is suggested to |:set|
640 the options 'foldminlines' and 'foldnestmax' in |.vimrc| or use |:setlocal| in
641 .../after/syntax/baan.vim (see |after-directory|). Eg: >
642 set foldminlines=5
643 set foldnestmax=6
611 644
612 645
613 BASIC *basic.vim* *vb.vim* *ft-basic-syntax* *ft-vb-syntax* 646 BASIC *basic.vim* *vb.vim* *ft-basic-syntax* *ft-vb-syntax*
614 647
615 Both Visual Basic and "normal" basic use the extension ".bas". To detect 648 Both Visual Basic and "normal" basic use the extension ".bas". To detect