diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-05-01 21:14:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-05-01 21:14:34 +0200 |
commit | 8071607aa5e6f4decd2c3ba0a41cf2b3498b6f1e (patch) | |
tree | b89b0ce21c32df983ad6b857b3ac55188a0f58ed /runtime/lang/menu_zh_tw.utf-8.vim | |
parent | 2d0b92f8f9f765f2707a98a3493903f895c87c7f (diff) | |
download | vim-git-8071607aa5e6f4decd2c3ba0a41cf2b3498b6f1e.tar.gz |
More runtime file fixes for 'compatible' mode.
Diffstat (limited to 'runtime/lang/menu_zh_tw.utf-8.vim')
-rw-r--r-- | runtime/lang/menu_zh_tw.utf-8.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/lang/menu_zh_tw.utf-8.vim b/runtime/lang/menu_zh_tw.utf-8.vim index 97c56a397..7bef83ce9 100644 --- a/runtime/lang/menu_zh_tw.utf-8.vim +++ b/runtime/lang/menu_zh_tw.utf-8.vim @@ -1,6 +1,6 @@ " Menu Translations: Traditional Chinese " Translated By: Hung-Te Lin <piaip@csie.ntu.edu.tw> -" Last Change: 2005/01/28 02:51:38 +" Last Change: 2012 May 01 " {{{ Quit when menu translations have already been done. if exists("did_menu_trans") @@ -9,6 +9,9 @@ endif let did_menu_trans = 1 " }}} +let s:keepcpo= &cpo +set cpo&vim + scriptencoding utf-8 " {{{ Help menu: complete @@ -282,4 +285,7 @@ if has("toolbar") endif " }}} +let &cpo = s:keepcpo +unlet s:keepcpo + " vim:foldmethod=marker:nowrap:foldcolumn=2:foldlevel=1 |