blob: 7bef83ce9a98185c5740b6d373ffb9d40d1ece35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
|
" Menu Translations: Traditional Chinese
" Translated By: Hung-Te Lin <piaip@csie.ntu.edu.tw>
" Last Change: 2012 May 01
" {{{ Quit when menu translations have already been done.
if exists("did_menu_trans")
finish
endif
let did_menu_trans = 1
" }}}
let s:keepcpo= &cpo
set cpo&vim
scriptencoding utf-8
" {{{ Help menu: complete
menutrans &Help 輔助說明(&H)
" ------------------------------------------------------------------------
menutrans &Overview<Tab><F1> 說明文件總覽(&O)<Tab><F1>
menutrans &User\ Manual 使用者手冊(&U)
menutrans &How-to\ links 如何作\.\.\.(&H)
menutrans &GUI 圖型界面(&G)
menutrans &Credits 感謝(&C)
menutrans Co&pying 版權(&P)
menutrans &Sponsor/Register 贊助/註冊(&S)
menutrans O&rphans 拯救孤兒(&R)
" ------------------------------------------------------------------------
menutrans &Version 程式版本資訊(&V)
menutrans &About 關於\ Vim(&A)
" }}}
" {{{ File menu: complete
menutrans &File 檔案(&F)
" ------------------------------------------------------------------------
menutrans &Open\.\.\.<Tab>:e 開啟(&O)\.\.\.<Tab>:e
menutrans Sp&lit-Open\.\.\.<Tab>:sp 分割視窗並開啟(&L)<Tab>:sp
menutrans &New<Tab>:enew 編輯新檔案(&N)<Tab>:enew
menutrans &Close<Tab>:close 關閉檔案(&C)<Tab>:close
" ------------------------------------------------------------------------
menutrans &Save<Tab>:w 儲存(&S)<Tab>:w
menutrans Save\ &As\.\.\.<Tab>:sav 另存新檔(&A)\.\.\.<Tab>:sav
" ------------------------------------------------------------------------
menutrans Split\ &Diff\ with\.\.\. 比較(&Diff)\.\.\.
menutrans Split\ Patched\ &By\.\.\. 執行Patch(&B)\.\.\.
" ------------------------------------------------------------------------
menutrans &Print 列印(&P)
" ------------------------------------------------------------------------
menutrans Sa&ve-Exit<Tab>:wqa 儲存並離開(&V)<Tab>:wqa
menutrans E&xit<Tab>:qa 離開(&X)<Tab>:qa
" }}}
" {{{ Edit menu
menutrans &Edit 編輯(&E)
" ------------------------------------------------------------------------
menutrans &Undo<Tab>u 復原(&U)<Tab>u
menutrans &Redo<Tab>^R 取消上次復原(&R)<Tab>^R
menutrans Rep&eat<Tab>\. 重複上次動作(&E)<Tab>\.
" ------------------------------------------------------------------------
menutrans Cu&t<Tab>"+x 剪下(&T)<Tab>"+x
menutrans &Copy<Tab>"+y 複製(&C)<Tab>"+y
menutrans &Paste<Tab>"+gP 貼上(&P)<Tab>"+gP
menutrans Put\ &Before<Tab>[p 貼到游標前(&B)<Tab>[p
menutrans Put\ &After<Tab>]p 貼到游標後(&A)<Tab>]p
menutrans &Delete<Tab>x 刪除(&D)<Tab>x
menutrans &Select\ All<Tab>ggVG 全選(&S)<Tab>ggvG
" ------------------------------------------------------------------------
menutrans &Find\.\.\. 尋找(&F)\.\.\.
menutrans Find\ and\ Rep&lace\.\.\. 尋找並取代(&L)\.\.\.
" ------------------------------------------------------------------------
menutrans Settings\ &Window 設定視窗(&W)
menutrans &Global\ Settings 全域設定(&G)
menutrans F&ile\ Settings 設定此檔案(&I)
menutrans C&olor\ Scheme 配色設定(&O)
menutrans &Keymap 鍵盤對應(&K)
" "{{{ Keymap:
menutrans None 無
" }}}
menutrans Select\ Fo&nt\.\.\. 設定字型(&N)\.\.\.
" }}}
" {{{ Edit.FileSettings
menutrans Toggle\ Line\ &Numbering<Tab>:set\ nu! 切換顯示行號(&N)<Tab>:set\ nu!
menutrans Toggle\ &List\ Mode<Tab>:set\ list! 切換顯示行尾及TAB(&L)<Tab>:set\ list!
menutrans Toggle\ Line\ &Wrap<Tab>:set\ wrap! 切換自動折行顯示(&W)<Tab>:set\ wrap!
menutrans Toggle\ W&rap\ at\ word<Tab>:set\ lbr! 切換折行顯示可任意斷句(&R)<Tab>:set\ lbr!
menutrans Toggle\ &expand-tab<Tab>:set\ et! 切換展開TAB(&E)<Tab>:set\ et!
menutrans Toggle\ &auto-indent<Tab>:set\ ai! 切換自動縮排(&A)<Tab>:set\ ai!
menutrans Toggle\ &C-indenting<Tab>:set\ cin! 切換C語言縮排(&C)<Tab>:set\ cin!
" ------------------------------------------------------------------------
menutrans &Shiftwidth 縮排寬度(shiftwidth)(&S)
menutrans Soft\ &Tabstop 軟體模擬TAB(softtabstop)(&T)
menutrans Te&xt\ Width\.\.\. 文字頁面寬度(textwidth)(&X)\.\.\.
menutrans &File\ Format\.\.\. 設定檔案格式(對應作業系統)(&F)\.\.\.
" }}}
" {{{ Edit.GlobalSettings
menutrans Toggle\ Pattern\ &Highlight<Tab>:set\ hls! 切換高亮度搜尋字串(&H)<Tab>:set\ hls!
menutrans Toggle\ &Ignore-case<Tab>:set\ ic! 切換忽略大小寫(&I)<Tab>:set\ ic!
menutrans Toggle\ &Showmatch<Tab>:set\ sm! 切換顯示對應括號(&S)<Tab>:set\ sm!
menutrans Toggle\ Vi\ C&ompatible<Tab>:set\ cp! 切換傳統Vi相容模式(&O)<Tab>:set\ cp!
menutrans &Context\ lines 本文前後保留行數(scrolloff)(&C)
menutrans &Virtual\ Edit 游標任意移動(virtualedit)(&V)
" {{{ Edit.GlobalSettings.VirtualEdit
menutrans Never 不使用
menutrans Block\ Selection 區塊選擇時
menutrans Insert\ mode 插入模式時
menutrans Block\ and\ Insert 區塊與插入模式
menutrans Always 一直開啟
" }}}
menutrans Toggle\ Insert\ &Mode<Tab>:set\ im! 切換插入模式(&M)<Tab>:set\ im!
menutrans Search\ &Path\.\.\. 搜尋路徑(&P)\.\.\.
menutrans Ta&g\ Files\.\.\. Tag\ 標籤索引檔案(&G)\.\.\.
" ------------------------------------------------------------------------
menutrans Toggle\ &Toolbar 切換使用工具列(&T)
menutrans Toggle\ &Bottom\ Scrollbar 切換使用底端捲動軸(&B)
menutrans Toggle\ &Left\ Scrollbar 切換使用左端捲動軸(&L)
menutrans Toggle\ &Right\ Scrollbar 切換使用右端捲動軸(&R)
" }}}
" {{{ Tools menu: complete
menutrans &Tools 工具(&T)
" ------------------------------------------------------------------------
menutrans &Jump\ to\ this\ tag<Tab>g^] 檢索游標處的標籤關鍵字(tag)(&J)<Tab>g^]
menutrans Jump\ &back<Tab>^T 跳回檢索前的位置(&B)<Tab>^T
menutrans Build\ &Tags\ File 建立標籤索引檔\ Tags(&T)
" ------------------------------------------------------------------------
menutrans &Folding 覆疊(Fold)設定(&F)
" {{{ Tools.Fold
menutrans &Enable/Disable\ folds<Tab>zi 切換使用\ Folding(&E)<Tab>zi
menutrans &View\ Cursor\ Line<Tab>zv 檢視此層\ Fold(&V)<Tab>zv
menutrans Vie&w\ Cursor\ Line\ only<Tab>zMzx 只檢視此\ Fold(&W)<Tab>zMzx
menutrans C&lose\ more\ folds<Tab>zm 收起一層\ Folds(&L)<Tab>zm
menutrans &Close\ all\ folds<Tab>zM 收起所有\ Folds(&C)<Tab>zM
menutrans O&pen\ more\ folds<Tab>zr 打開一層\ Folds(&P)<Tab>zr
menutrans &Open\ all\ folds<Tab>zR 打開所有\ Folds(&O)<Tab>zR
menutrans Fold\ Met&hod Folding\ 方式(&H)
" {{{ Tools.Fold.Method
menutrans M&anual 手動建立(&A)
menutrans I&ndent 依照縮排(&N)
menutrans E&xpression 自訂運算式(&X)
menutrans S&yntax 依照語法設定(&Y)
menutrans &Diff Diff(&D)
menutrans Ma&rker 標記(Marker)(&R)
" }}}
" ------------------------------------------------------------------------
menutrans Create\ &Fold<Tab>zf 建立\ Fold(&F)<Tab>zf
menutrans &Delete\ Fold<Tab>zd 刪除\ Fold(&D)<Tab>zd
menutrans Delete\ &All\ Folds<Tab>zD 刪除所有\ Fold(&A)<Tab>zD
" ------------------------------------------------------------------------
menutrans Fold\ column\ &width 設定\ Fold欄寬(&W)
" }}}
menutrans &Diff Diff(&D)
" {{{ Tools.Diff
menutrans &Update 更新(&U)
menutrans &Get\ Block 取得區塊(&G)
menutrans &Put\ Block 貼上區塊(&P)
" }}}
" ------------------------------------------------------------------------
menutrans &Make<Tab>:make 執行\ Make(&M)<Tab>:make
menutrans &List\ Errors<Tab>:cl 列出編譯錯誤(&E)<Tab>:cl
menutrans L&ist\ Messages<Tab>:cl! 列出所有訊息(&I)<Tab>:cl!
menutrans &Next\ Error<Tab>:cn 下一個編譯錯誤處(&N)<Tab>:cn
menutrans &Previous\ Error<Tab>:cp 上一個編譯錯誤處(&P)<Tab>:cp
menutrans &Older\ List<Tab>:cold 檢視舊錯誤列表(&O)<Tab>:cold
menutrans N&ewer\ List<Tab>:cnew 檢視新錯誤列表(&E)<Tab>:cnew
menutrans Error\ &Window 錯誤訊息視窗(&W)
" {{{ Tools.ErrorWindow
menutrans &Update<Tab>:cwin 更新(&U)<Tab>:cwin
menutrans &Open<Tab>:copen 開啟(&O)<Tab>:copen
menutrans &Close<Tab>:cclose 關閉(&C)<Tab>:cclose
" }}}
menutrans &Set\ Compiler 設定編譯器Compiler(&S)
" ------------------------------------------------------------------------
menutrans &Convert\ to\ HEX<Tab>:%!xxd 轉換成16進位碼(&C)<Tab>:%!xxd
menutrans Conve&rt\ back<Tab>:%!xxd\ -r 從16進位碼轉換回文字(&R)<Tab>:%!xxd\ -r
" }}}
" {{{ Syntax menu: compete
menutrans &Syntax 語法效果(&S)
" ------------------------------------------------------------------------
menutrans &Show\ filetypes\ in\ menu 顯示所有可用檔案格式(&S)
menutrans Set\ '&syntax'\ only 只使用\ 'syntax'(&S)
menutrans Set\ '&filetype'\ too 使用\ 'syntax'+'filetype'(&F)
menutrans &Off 關閉效果(&O)
menutrans &Manual 手動設定(&M)
menutrans A&utomatic 自動設定(&U)
menutrans on/off\ for\ &This\ file 只切換此檔的效果設定(&T)
" ------------------------------------------------------------------------
menutrans Co&lor\ test 色彩顯示測試(&L)
menutrans &Highlight\ test 語法效果測試(&H)
menutrans &Convert\ to\ HTML 轉換成\ HTML\ 格式(&C)
" }}}
" {{{ Buffers menu: complete
menutrans &Buffers 緩衝區(&B)
" ------------------------------------------------------------------------
menutrans &Refresh\ menu 更新(&R)
menutrans &Delete 刪除(&D)
menutrans &Alternate 切換上次編輯緩衝區(&A)
menutrans &Next 下一個(&N)
menutrans &Previous 前一個(&P)
" ------------------------------------------------------------------------
" menutrans [No\ file] [無檔案]
" }}}
" {{{ Window menu: complete
menutrans &Window 視窗(&W)
" ------------------------------------------------------------------------
menutrans &New<Tab>^Wn 開新視窗(&N)<Tab>^Wn
menutrans S&plit<Tab>^Ws 分割視窗(&P)<Tab>^Ws
menutrans Sp&lit\ To\ #<Tab>^W^^ 分割到#(&L)<Tab>^W^^
menutrans Split\ &Vertically<Tab>^Wv 垂直分割(&V)<Tab>^Wv
menutrans Split\ File\ E&xplorer 檔案總管式分割(&X)
" ------------------------------------------------------------------------
menutrans &Close<Tab>^Wc 關閉視窗(&C)<Tab>^Wc
menutrans Close\ &Other(s)<Tab>^Wo 關閉其它視窗(&O)<Tab>^Wo
" ------------------------------------------------------------------------
menutrans Move\ &To 移至(&T)
" {{{ Window.MoveTo
menutrans &Top<Tab>^WK 頂端(&T)<Tab>^WK
menutrans &Bottom<Tab>^WJ 底端(&B)<Tab>^WJ
menutrans &Left\ side<Tab>^WH 左邊(&L)<Tab>^WH
menutrans &Right\ side<Tab>^WL 右邊(&R)<Tab>^WL
" }}}
menutrans Rotate\ &Up<Tab>^WR 上移視窗(&U)<Tab>^WR
menutrans Rotate\ &Down<Tab>^Wr 下移視窗(&D)<Tab>^Wr
" ------------------------------------------------------------------------
menutrans &Equal\ Size<Tab>^W= 所有視窗等高(&E)<Tab>^W=
menutrans &Max\ Height<Tab>^W_ 最大高度(&M)<Tab>^W
menutrans M&in\ Height<Tab>^W1_ 最小高度(&I)<Tab>^W1_
menutrans Max\ &Width<Tab>^W\| 最大寬度(&W)<Tab>^W\|
menutrans Min\ Widt&h<Tab>^W1\| 最小寬度(&H)<Tab>^W1\|
" }}}
" {{{ The popup menu: complete
menutrans &Undo 復原(&U)
" ------------------------------------------------------------------------
menutrans Cu&t 剪下(&T)
menutrans &Copy 複製(&C)
menutrans &Paste 貼上(&P)
menutrans &Delete 刪除(&D)
" ------------------------------------------------------------------------
menutrans Select\ Blockwise Blockwise式選擇
menutrans Select\ &Word 選擇單字(&W)
menutrans Select\ &Line 選擇行(&L)
menutrans Select\ &Block 選擇區塊(&B)
menutrans Select\ &All 全選(&A)
" }}}
" {{{ The GUI toolbar: complete
if has("toolbar")
if exists("*Do_toolbar_tmenu")
delfun Do_toolbar_tmenu
endif
fun Do_toolbar_tmenu()
tmenu ToolBar.Open 開啟檔案
tmenu ToolBar.Save 儲存目前編輯中的檔案
tmenu ToolBar.SaveAll 儲存全部檔案
tmenu ToolBar.Print 列印
" ------------------------------------------------------------------------
tmenu ToolBar.Undo 復原上次變動
tmenu ToolBar.Redo 取消上次復原動作
" ------------------------------------------------------------------------
tmenu ToolBar.Cut 剪下至剪貼簿
tmenu ToolBar.Copy 複製到剪貼簿
tmenu ToolBar.Paste 由剪貼簿貼上
" ------------------------------------------------------------------------
tmenu ToolBar.Find 尋找...
tmenu ToolBar.FindNext 找下一個
tmenu ToolBar.FindPrev 找上一個
tmenu ToolBar.Replace 取代...
" ------------------------------------------------------------------------
tmenu ToolBar.LoadSesn 載入 Session
tmenu ToolBar.SaveSesn 儲存目前的 Session
tmenu ToolBar.RunScript 執行 Vim 程式檔
" ------------------------------------------------------------------------
tmenu ToolBar.Make 執行 Make
tmenu ToolBar.Shell 開啟一個命令列視窗 DosBox
tmenu ToolBar.RunCtags 執行 ctags
tmenu ToolBar.TagJump 跳到目前游標位置的 tag
tmenu ToolBar.Help Vim 輔助說明
tmenu ToolBar.FindHelp 搜尋 Vim 說明文件
endfun
endif
" }}}
let &cpo = s:keepcpo
unlet s:keepcpo
" vim:foldmethod=marker:nowrap:foldcolumn=2:foldlevel=1
|