comparison runtime/doc/syntax.txt @ 32:41f9fd58cf13 v7.0019

updated for version 7.0019
author vimboss
date Tue, 12 Oct 2004 20:02:24 +0000
parents ac33b7c03fac
children 125e80798a85
comparison
equal deleted inserted replaced
31:6f8b1be930a6 32:41f9fd58cf13
1 *syntax.txt* For Vim version 7.0aa. Last change: 2004 Oct 10 1 *syntax.txt* For Vim version 7.0aa. Last change: 2004 Oct 12
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
418 :let html_use_encoding = "" 418 :let html_use_encoding = ""
419 To go back to the automatic mechanism, delete the g:html_use_encoding 419 To go back to the automatic mechanism, delete the g:html_use_encoding
420 variable: > 420 variable: >
421 :unlet html_use_encoding 421 :unlet html_use_encoding
422 < 422 <
423 Closed folds are kept as they are displayed. If you don't want closed folds
424 in the HTML use the |zR| command before converting.
425
426 For diff mode a sequence of more than 3 filler lines is displayed as three
427 lines with the middle line mentioning the total number of inserted lines. If
428 you prefer to see all the inserted lines use: >
429 :let html_whole_filler = 1
430 And to go back to displaying up to three lines again: >
431 :unlet html_whole_filler
432
423 *convert-to-XML* *convert-to-XHTML* 433 *convert-to-XML* *convert-to-XHTML*
424 An alternative is to have the script generate XHTML (XML compliant HTML). To 434 An alternative is to have the script generate XHTML (XML compliant HTML). To
425 do this set the "use_xhtml" variable: > 435 do this set the "use_xhtml" variable: >
426 :let use_xhtml = 1 436 :let use_xhtml = 1
427 To disable it again delete the variable: > 437 To disable it again delete the variable: >