Mercurial > vim
annotate runtime/lang/menu_ko_kr.utf-8.vim @ 29350:8a822186f1ab v9.0.0018
patch 9.0.0018: going over the end of the typahead
Commit: https://github.com/vim/vim/commit/27efc62f5d86afcb2ecb7565587fe8dea4b036fe
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jul 1 16:35:45 2022 +0100
patch 9.0.0018: going over the end of the typahead
Problem: Going over the end of the typahead.
Solution: Put a NUL after the typeahead.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 01 Jul 2022 17:45:02 +0200 |
parents | a1effd6bb5ba |
children | 83dfcad065f9 |
rev | line source |
---|---|
7 | 1 " Menu Translations: Korean |
2034 | 2 " Maintainer: SungHyun Nam <goweol@gmail.com> |
3507
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2725
diff
changeset
|
3 " Last Change: 2012 May 01 |
27788
a1effd6bb5ba
patch 8.2.4420: menu translations are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
3507
diff
changeset
|
4 " Original translations |
7 | 5 |
6 " Quit when menu translations have already been done. | |
7 if exists("did_menu_trans") | |
8 finish | |
9 endif | |
10 let did_menu_trans = 1 | |
3507
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2725
diff
changeset
|
11 let s:keepcpo= &cpo |
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2725
diff
changeset
|
12 set cpo&vim |
7 | 13 |
14 scriptencoding utf-8 | |
15 | |
16 " Help menu | |
17 menutrans &Help 도움말(&H) | |
18 menutrans &Overview<Tab><F1> 개관(&O)<Tab><F1> | |
19 menutrans &User\ Manual 사용자\ 매뉴얼(&U) | |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
20 menutrans &How-to\ links 하우투\ 목록(&H) |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
21 menutrans &GUI GUI(&G) |
7 | 22 menutrans &Find\.\.\. 찾기(&F)\.\.\. |
23 menutrans &Credits 고마운\ 분(&C) | |
24 menutrans Co&pying 저작권(&p) | |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
25 menutrans &Sponsor/Register 후원/등록(&S) |
7 | 26 menutrans O&rphans 고아(&r) |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
27 menutrans &Version 버젼(&V) |
7 | 28 menutrans &About 이\ 프로그램은(&A) |
29 | |
30 " File menu | |
31 menutrans &File 파일(&F) | |
32 menutrans &Open\.\.\.<Tab>:e 열기(&O)\.\.\.<Tab>:e | |
33 menutrans Sp&lit-Open\.\.\.<Tab>:sp 나눠서\ 열기(&l)\.\.\.<Tab>:sp | |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
34 menutrans Open\ Tab\.\.\.<Tab>:tabnew 탭\ 열기\.\.\.<Tab>:tabnew |
7 | 35 menutrans &New<Tab>:enew 새로운(&N)<Tab>:enew |
36 menutrans &Close<Tab>:close 닫기(&C)<Tab>:close | |
37 menutrans &Save<Tab>:w 저장(&S)<Tab>:w | |
38 menutrans Save\ &As\.\.\.<Tab>:sav 다른\ 이름으로\ 저장(&A)\.\.\.<Tab>:sav | |
39 "menutrans Split\ &Diff\ with\.\.\. Split\ &Diff\ with\.\.\. | |
40 "menutrans Split\ Patched\ &By\.\.\. Split\ Patched\ &By\.\.\. | |
41 menutrans &Print 인쇄(&P) | |
42 menutrans Sa&ve-Exit<Tab>:wqa 저장하고\ 끝내기(&v)<Tab>:wqa | |
43 menutrans E&xit<Tab>:qa 끝내기(&x)<Tab>:qa | |
44 | |
45 " Edit menu | |
46 menutrans &Edit 편집(&E) | |
47 menutrans &Undo<Tab>u 취소(&U)<Tab>u | |
2725 | 48 menutrans &Redo<Tab>^R 다시\ 실행(&R)<Tab>^R |
7 | 49 menutrans Rep&eat<Tab>\. 되풀이(&e)<Tab>\. |
50 menutrans Cu&t<Tab>"+x 자르기(&t)<Tab>"+x | |
51 menutrans &Copy<Tab>"+y 복사(&C)<Tab>"+y | |
52 menutrans &Paste<Tab>"+gP 붙이기(&P)<Tab>"+gP | |
53 menutrans Put\ &Before<Tab>[p 앞에\ 붙이기(&B)<Tab>[p | |
54 menutrans Put\ &After<Tab>]p 뒤에\ 붙이기(&A)<Tab>]p | |
55 menutrans &Delete<Tab>x 지우기(&D)<Tab>x | |
230 | 56 menutrans &Select\ All<Tab>ggVG 모두\ 고르기(&S)<Tab>ggVG |
7 | 57 menutrans &Find\.\.\. 찾기(&F)\.\.\. |
58 menutrans Find\ and\ Rep&lace\.\.\. 찾아서\ 바꾸기(&l)\.\.\. | |
59 menutrans Settings\ &Window 설정\ 창(&W) | |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
60 menutrans Startup\ &Settings 시작\ 설정(&S) |
7 | 61 |
62 " Edit/Global Settings | |
63 menutrans &Global\ Settings 전역\ 설정(&G) | |
64 menutrans Toggle\ Pattern\ &Highlight<Tab>:set\ hls! 패턴\ 하이라이트\ 토글(&H)<Tab>:set\ hls! | |
65 menutrans Toggle\ &Ignore-case<Tab>:set\ ic! 대소문자\ 구분\ 토글(&I)<Tab>:set\ ic! | |
66 menutrans Toggle\ &Showmatch<Tab>:set\ sm! Showmatch\ 토글(&S)<Tab>:set\ sm! | |
67 menutrans &Context\ lines 콘텍스트\ 줄(&C) | |
68 menutrans &Virtual\ Edit 가상\ 편집(&V) | |
2725 | 69 menutrans Never 사용\ 안\ 함 |
7 | 70 menutrans Block\ Selection 블럭\ 고르기 |
71 menutrans Insert\ mode 삽입\ 모드 | |
72 menutrans Block\ and\ Insert 블럭과\ 삽입 | |
73 menutrans Always 항상\ 사용 | |
74 menutrans Toggle\ Insert\ &Mode<Tab>:set\ im! 삽입\ 모드\ 토글(&M)<Tab>:set\ im! | |
75 menutrans Toggle\ Vi\ C&ompatible<Tab>:set\ cp! Vi\ 호환\ 토글(&o)<Tab>:set\ cp! | |
76 menutrans Search\ &Path\.\.\. 찾기\ 경로(&P)\.\.\. | |
77 menutrans Ta&g\ Files\.\.\. 꼬리표\ 파일(&g)\.\.\. | |
78 | |
79 " GUI options | |
80 menutrans Toggle\ &Toolbar 도구막대\ 토글(&T) | |
81 menutrans Toggle\ &Bottom\ Scrollbar 바닥\ 스크롤바\ 토글(&B) | |
82 menutrans Toggle\ &Left\ Scrollbar 왼쪽\ 스크롤바\ 토글(&L) | |
83 menutrans Toggle\ &Right\ Scrollbar 오른쪽\ 스크롤바\ 토글(&R) | |
84 | |
85 " Edit/File Settings | |
86 menutrans F&ile\ Settings 파일\ 설정(&i) | |
87 | |
88 " Boolean options | |
89 menutrans Toggle\ Line\ &Numbering<Tab>:set\ nu! 줄\ 번호붙이기\ 토글(&N)<Tab>:set\ nu! | |
90 menutrans Toggle\ &List\ Mode<Tab>:set\ list! 목록\ 모드\ 토글(&L)<Tab>:set\ list! | |
91 menutrans Toggle\ Line\ &Wrap<Tab>:set\ wrap! 줄\ Wrap\ 토글(&W)<Tab>:set\ wrap! | |
92 menutrans Toggle\ W&rap\ at\ word<Tab>:set\ lbr! 낱말에서\ Wrap\ 토글(&r)<Tab>:set\ lbr! | |
93 menutrans Toggle\ &expand-tab<Tab>:set\ et! 탭\ 확장\ 토글(&e)<Tab>:set\ et! | |
94 menutrans Toggle\ &auto-indent<Tab>:set\ ai! 자동인덴트\ 토글(&a)<Tab>:set\ ai! | |
95 menutrans Toggle\ &C-indenting<Tab>:set\ cin! C-인덴팅\ 토글(&C)<Tab>:set\ cin! | |
96 | |
97 " other options | |
2725 | 98 menutrans &Shiftwidth 쉬프트\ 너비(&S) |
7 | 99 menutrans Soft\ &Tabstop 소프트\ 탭스톱(&T) |
100 menutrans Te&xt\ Width\.\.\. 텍스트\ 너비(&x)\.\.\. | |
101 menutrans &File\ Format\.\.\. 파일\ 형식(&F)\.\.\. | |
102 menutrans C&olor\ Scheme 컬러\ 스킴(&o) | |
103 menutrans &Keymap 키맵(&K) | |
104 | |
105 menutrans Select\ Fo&nt\.\.\. 글꼴\ 고르기(&F)\.\.\. | |
106 | |
107 " Programming menu | |
108 menutrans &Tools 도구(&T) | |
109 menutrans &Jump\ to\ this\ tag<Tab>g^] 이\ 꼬리표로\ 가기(&J)<Tab>g^] | |
110 menutrans Jump\ &back<Tab>^T 뒤로\ 가기(&b)<Tab>^T | |
111 menutrans Build\ &Tags\ File 꼬리표\ 파일\ 만들기(&T) | |
112 | |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
113 menutrans &Spelling 맞춤법\ 검사(&S) |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
114 menutrans &Spell\ Check\ On 맞춤법\ 검사\ 시작(&S) |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
115 menutrans Spell\ Check\ &Off 맞춤법\ 검사\ 끝(&O) |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
116 menutrans To\ &Next\ error<Tab>]s 다음\ 에러로(&N)<Tab>]s |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
117 menutrans To\ &Previous\ error<Tab>[s 이전\ 에러로(&P)<Tab>[s |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
118 menutrans Suggest\ &Corrections<Tab>z= 수정\ 제안(&C)<Tab>z= |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
119 menutrans &Repeat\ correction<Tab>:spellrepall 수정\ 반복(&R)<Tab>:spellrepall |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
120 menutrans Set\ language\ to\ "en" 언어를\ "en"으로\ 설정 |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
121 menutrans Set\ language\ to\ "en_au" 언어를\ "en_au"로\ 설정 |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
122 menutrans Set\ language\ to\ "en_ca" 언어를\ "en_ca"로\ 설정 |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
123 menutrans Set\ language\ to\ "en_gb" 언어를\ "en_gb"로\ 설정 |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
124 menutrans Set\ language\ to\ "en_nz" 언어를\ "en_nz"으로\ 설정 |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
125 menutrans Set\ language\ to\ "en_us" 언어를\ "en_us"로\ 설정 |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
126 menutrans &Find\ More\ Languages 다른\ 언어\ 찾기(&F) |
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
127 |
7 | 128 " Tools.Fold Menu |
129 menutrans &Folding 접기(&F) | |
130 " open close folds | |
2725 | 131 menutrans &Enable/Disable\ folds<Tab>zi 접기\ 사용\ 토글(&E)<Tab>zi |
7 | 132 menutrans &View\ Cursor\ Line<Tab>zv 커서\ 줄\ 보기(&V)<Tab>zv |
133 menutrans Vie&w\ Cursor\ Line\ only<Tab>zMzx 커서\ 줄만\ 보기(&w)<Tab>zMzx | |
134 menutrans C&lose\ more\ folds<Tab>zm 더\ 많은\ 접기\ 닫기(&l)<Tab>zm | |
2725 | 135 menutrans &Close\ all\ folds<Tab>zM 모든\ 접기\ 닫기(&C)<Tab>zM |
136 menutrans O&pen\ more\ folds<Tab>zr 더\ 많은\ 접기\ 열기(&p)<Tab>zr | |
7 | 137 menutrans &Open\ all\ folds<Tab>zR 접힌\ 부분\ 모두\ 펴기(&O)<Tab>zR |
138 " fold method | |
139 menutrans Fold\ Met&hod 접는\ 방법(&h) | |
140 menutrans M&anual 수동(&a) | |
141 menutrans I&ndent 들여쓰기(&n) | |
142 menutrans E&xpression 표현식(&x) | |
143 menutrans S&yntax 신택스(&y) | |
144 "menutrans &Diff &Diff | |
145 menutrans Ma&rker 꼬리표(&r) | |
146 " create and delete folds | |
2725 | 147 menutrans Create\ &Fold<Tab>zf 접기\ 생성(&F)<Tab>zf |
148 menutrans &Delete\ Fold<Tab>zd 접기\ 삭제(&D)<Tab>zd | |
149 menutrans Delete\ &All\ Folds<Tab>zD 모든\ 접기\ 삭제(&A)<Tab>zD | |
7 | 150 " moving around in folds |
2725 | 151 menutrans Fold\ column\ &width 접기\ 컬럼\ 너비(&w) |
7 | 152 |
153 "menutrans &Diff &Diff | |
154 menutrans &Update 갱신(&U) | |
155 menutrans &Get\ Block 블럭\ 가져오기(&G) | |
156 menutrans &Put\ Block 블럭\ 집어넣기(&P) | |
157 | |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
158 menutrans &Make<Tab>:make 빌드(&M)<Tab>:make |
7 | 159 menutrans &List\ Errors<Tab>:cl 에러\ 목록\ 보기(&L)<Tab>:cl |
160 menutrans L&ist\ Messages<Tab>:cl! 메시지\ 목록\ 보기(&i)<Tab>:cl! | |
161 menutrans &Next\ Error<Tab>:cn 다음\ 에러(&N)<Tab>:cn | |
162 menutrans &Previous\ Error<Tab>:cp 이전\ 에러(&P)<Tab>:cp | |
163 menutrans &Older\ List<Tab>:cold 오래된\ 목록(&O)<Tab>:cold | |
164 menutrans N&ewer\ List<Tab>:cnew 새로운\ 목록(&e)<Tab>:cnew | |
165 menutrans Error\ &Window 에러\ 창(&W) | |
166 menutrans &Update<Tab>:cwin 갱신(&U)<Tab>:cwin | |
167 menutrans &Open<Tab>:copen 열기(&O)<Tab>:copen | |
168 menutrans &Close<Tab>:cclose 닫기(&C)<Tab>:cclose | |
2098
3259c3923c1e
Updated runtime an documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
2034
diff
changeset
|
169 menutrans Se&T\ Compiler 컴파일러\ 설정(&T) |
7 | 170 menutrans &Convert\ to\ HEX<Tab>:%!mc\ vim:xxd 십육진으로\ 변환<Tab>:%!mc\ vim:xxd |
171 menutrans &Convert\ to\ HEX<Tab>:%!xxd 십육진으로\ 변환(&C)<Tab>:%!xxd | |
172 menutrans Conve&rt\ back<Tab>:%!mc\ vim:xxd\ -r 원래대로\ 변환(&r)<Tab>:%!mc\ vim:xxd\ -r | |
173 menutrans Conve&rt\ back<Tab>:%!xxd\ -r 원래대로\ 변환(&r)<Tab>:%!xxd\ -r | |
174 | |
175 " Names for buffer menu. | |
176 menutrans &Buffers 버퍼(&B) | |
177 menutrans &Refresh\ menu 차림표\ 다시그리기(&R) | |
178 menutrans &Delete 지우기(&D) | |
179 menutrans &Alternate 교체(&A) | |
180 menutrans &Next 다음(&N) | |
181 menutrans &Previous 이전(&P) | |
182 | |
183 " Window menu | |
184 menutrans &Window 창(&W) | |
185 menutrans &New<Tab>^Wn 새\ 창(&N)<Tab>^Wn | |
186 menutrans S&plit<Tab>^Ws 나누기(&p)<Tab>^Ws | |
187 menutrans Sp&lit\ To\ #<Tab>^W^^ #으로\ 나누기(&l)<Tab>^W^^ | |
188 menutrans Split\ &Vertically<Tab>^Wv 세로로\ 나누기(&V)<Tab>^Wv | |
189 menutrans Split\ File\ E&xplorer 파일\ 익스플로러\ 나누기 | |
190 | |
191 menutrans &Close<Tab>^Wc 닫기(&C)<Tab>^Wc | |
192 menutrans Close\ &Other(s)<Tab>^Wo 다른\ 창\ 닫기(&O)<Tab>^Wo | |
193 | |
194 menutrans Move\ &To 이동(&T) | |
195 menutrans &Top<Tab>^WK 꼭대기(&T)<Tab>^WK | |
196 menutrans &Bottom<Tab>^WJ 바닥(&B)<Tab>^WJ | |
197 menutrans &Left\ side<Tab>^WH 왼쪽(&L)<Tab>^WH | |
198 menutrans &Right\ side<Tab>^WL 오른쪽(&R)<Tab>^WL | |
199 menutrans Rotate\ &Up<Tab>^WR 위로\ 회전(&U)<Tab>^WR | |
200 menutrans Rotate\ &Down<Tab>^Wr 아래로\ 회전(&D)<Tab>^Wr | |
201 | |
202 menutrans &Equal\ Size<Tab>^W= 같은\ 높이로(&E)<Tab>^W= | |
203 menutrans &Max\ Height<Tab>^W_ 최대\ 높이로(&M)<Tab>^W_ | |
204 menutrans M&in\ Height<Tab>^W1_ 최소\ 높이로(&i)<Tab>^W1_ | |
205 menutrans Max\ &Width<Tab>^W\| 최대\ 넓이로(&W)<Tab>^W\| | |
206 menutrans Min\ Widt&h<Tab>^W1\| 최소\ 넓이로(&h)<Tab>^W1\| | |
207 | |
208 " The popup menu | |
209 menutrans &Undo 취소(&U) | |
210 menutrans Cu&t 자르기(&t) | |
211 menutrans &Copy 복사(&C) | |
212 menutrans &Paste 붙이기(&P) | |
213 menutrans &Delete 지우기(&D) | |
214 menutrans Select\ Blockwise 사각형\ 고르기 | |
215 menutrans Select\ &Word 낱말\ 고르기(&W) | |
216 menutrans Select\ &Line 줄\ 고르기(&L) | |
217 menutrans Select\ &Block 구획\ 고르기(&B) | |
218 menutrans Select\ &All 모두\ 고르기(&A) | |
219 | |
220 " The GUI toolbar | |
221 if has("toolbar") | |
222 if exists("*Do_toolbar_tmenu") | |
223 delfun Do_toolbar_tmenu | |
224 endif | |
225 fun Do_toolbar_tmenu() | |
226 tmenu ToolBar.Open 파일 열기 | |
227 tmenu ToolBar.Save 현재 파일 저장 | |
228 tmenu ToolBar.SaveAll 모두 저장 | |
229 tmenu ToolBar.Print 인쇄 | |
230 tmenu ToolBar.Undo 취소 | |
231 tmenu ToolBar.Redo 다시 실행 | |
232 tmenu ToolBar.Cut 자르기 | |
233 tmenu ToolBar.Copy 복사 | |
234 tmenu ToolBar.Paste 붙이기 | |
235 tmenu ToolBar.Find 찾기... | |
236 tmenu ToolBar.FindNext 다음 찾기 | |
237 tmenu ToolBar.FindPrev 이전 찾기 | |
238 tmenu ToolBar.Replace 바꾸기 | |
239 tmenu ToolBar.LoadSesn 세션 읽어오기 | |
240 tmenu ToolBar.SaveSesn 세션 저장 | |
241 tmenu ToolBar.RunScript 스크립트 실행 | |
242 tmenu ToolBar.Make Make | |
243 tmenu ToolBar.Shell 쉘 | |
244 tmenu ToolBar.RunCtags 꼬리표 만들기 | |
245 tmenu ToolBar.TagJump 꼬리표로 가기 | |
246 tmenu ToolBar.Help 도움말 | |
247 tmenu ToolBar.FindHelp 도움말 찾기... | |
248 endfun | |
249 endif | |
250 | |
251 " Syntax menu | |
252 menutrans &Syntax 문법(&S) | |
230 | 253 menutrans &Show\ filetypes\ in\ menu 모든\ 선택가능한\ 항목\ 보기(&S) |
7 | 254 menutrans Set\ '&syntax'\ only 'syntax'만\ 설정(&s) |
255 menutrans Set\ '&filetype'\ too 'filetype'도\ 설정(&f) | |
256 menutrans &Off 끄기(&O) | |
257 menutrans &Manual 수동(&M) | |
258 menutrans A&utomatic 자동(&u) | |
259 menutrans on/off\ for\ &This\ file 이\ 파일만\ 켜기/끄기(&T) | |
260 | |
261 menutrans Co&lor\ test 색\ 시험(&l) | |
262 menutrans &Highlight\ test Highlight\ 시험(&H) | |
263 menutrans &Convert\ to\ HTML HTML로\ 변환(&C) | |
264 | |
3507
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2725
diff
changeset
|
265 let &cpo = s:keepcpo |
8201108e9cf0
More runtime file fixes for 'compatible' mode.
Bram Moolenaar <bram@vim.org>
parents:
2725
diff
changeset
|
266 unlet s:keepcpo |