summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/2html.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-12-06 20:04:44 +0000
committerBram Moolenaar <Bram@vim.org>2005-12-06 20:04:44 +0000
commit241a8aaa48404921a3e84fc2cdfb5c752edeab69 (patch)
tree08b4766d30eb26d55c7772ae4763835ee6d9bbb9 /runtime/syntax/2html.vim
parent9372a11ca67d6bdec9c16407a941cb8094eec3b6 (diff)
updated for version 7.0163v7.0163
Diffstat (limited to 'runtime/syntax/2html.vim')
-rw-r--r--runtime/syntax/2html.vim4
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/syntax/2html.vim b/runtime/syntax/2html.vim
index 3317f7369b..49feceea98 100644
--- 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'