diff runtime/syntax/2html.vim @ 575:f1d46f948241 v7.0163

updated for version 7.0163
author vimboss
date Tue, 06 Dec 2005 20:04:44 +0000
parents 2244be18d9e9
children 5a7843c57316
line wrap: on
line diff
--- a/runtime/syntax/2html.vim
+++ b/runtime/syntax/2html.vim
@@ -1,6 +1,6 @@
 " Vim syntax support file
 " Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2005 Dec 01
+" Last Change: 2005 Dec 04
 "	       (modified by David Ne\v{c}as (Yeti) <yeti@physics.muni.cz>)
 "	       (XHTML support by Panagiotis Issaris <takis@lumumba.luc.ac.be>)
 
@@ -164,6 +164,8 @@ else
     let s:html_encoding = substitute(s:vim_encoding, 'cp', 'windows-', '')
   elseif s:vim_encoding == 'sjis'
     let s:html_encoding = 'Shift_JIS'
+  elseif s:vim_encoding == 'big5'
+    let s:html_encoding = "Big5"
   elseif s:vim_encoding == 'euc-cn'
     let s:html_encoding = 'GB_2312-80'
   elseif s:vim_encoding == 'euc-tw'