• R/O
  • SSH

vim: 提交

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

修訂010397e1770eec8ff399cfc3bbd79f853849ffc1 (tree)
時間2005-11-27 08:48:46
作者vimboss
Commitervimboss

Log Message

updated for version 7.0160

Change Summary

差異

diff -r 8613d6454d23 -r 010397e1770e runtime/doc/todo.txt
--- a/runtime/doc/todo.txt Sat Nov 26 23:46:11 2005 +0000
+++ b/runtime/doc/todo.txt Sat Nov 26 23:48:46 2005 +0000
@@ -1,4 +1,4 @@
1-*todo.txt* For Vim version 7.0aa. Last change: 2005 Nov 25
1+*todo.txt* For Vim version 7.0aa. Last change: 2005 Nov 26
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -58,6 +58,8 @@
5858 :e ++enc=xxx ++bad=drop foo.txt
5959 :e ++enc=xxx ++bad=? foo.txt
6060
61+Win32: preserve the hidden attribute of the viminfo file.
62+
6163 ccomplete:
6264 - When an option is set: In completion mode and the user types (identifier)
6365 characters, advance to the first match instead of removing the popup menu.
@@ -276,6 +278,7 @@
276278 Roman, 2004 Dec 15. Should then also work with Oracle Jdeveloper, see JSR
277279 198 standard http://www.jcp.org/en/jsr/detail?id=198.
278280 Eclim does it: http://eclim.sourceforge.net/ (Eric Van Dewoestine)
281+ Plugin that uses a terminal emulator: http://ls10-www.cs.uni-dortmund.de/~menge/private/vimplugin.html
279282 - STICKY CURSOR: Add a way of scrolling that leaves the cursor where it is.
280283 Especially when using the scrollbar. Typing a cursor-movement command
281284 scrolls back to where the cursor is.
@@ -936,7 +939,6 @@
936939
937940
938941 Macintosh:
939-7 Implement "undercurl".
940942 7 Patch to add 'transparency' option. Disadvantage: it's slow. (Eckehard
941943 Berns, 2004 May 9) http://ecki.to/vim/TransBack-2004-05-09.diff
942944 Needs more work. Add when someone really wants it.
diff -r 8613d6454d23 -r 010397e1770e runtime/spell/de/de_CH.diff
--- a/runtime/spell/de/de_CH.diff Sat Nov 26 23:46:11 2005 +0000
+++ b/runtime/spell/de/de_CH.diff Sat Nov 26 23:48:46 2005 +0000
@@ -1,5 +1,5 @@
1-*** de_CH.orig.aff Thu Aug 25 11:22:18 2005
2---- de_CH.aff Thu Sep 29 11:44:50 2005
1+*** de_CH.orig.aff Sat Nov 26 19:38:16 2005
2+--- de_CH.aff Sat Nov 26 19:38:08 2005
33 ***************
44 *** 3,4 ****
55 --- 3,21 ----
@@ -23,8 +23,8 @@
2323 +
2424
2525 ***************
26-*** 501 ****
27---- 518,994 ----
26+*** 503 ****
27+--- 520,996 ----
2828 REP eh e
2929 +
3030 + # German phonetic transformation rules from Aspell
diff -r 8613d6454d23 -r 010397e1770e runtime/spell/de/main.aap
--- a/runtime/spell/de/main.aap Sat Nov 26 23:46:11 2005 +0000
+++ b/runtime/spell/de/main.aap Sat Nov 26 23:48:46 2005 +0000
@@ -132,6 +132,8 @@
132132 :delete $ZIPFILE_AT
133133
134134 :print >>de_AT.dic
135+ # delete the first line, the word count
136+ :sys $VIM de_DE.dic -e -c 1delete -c wq
135137 :cat de_DE.dic >>de_AT.dic
136138 :delete de_DE.dic
137139 :move de_DE.aff de_AT.aff
@@ -184,7 +186,51 @@
184186 # ".new.aff" and ".new.dic" files are left behind for manual inspection.
185187
186188 check:
187- :print TODO!!!!
189+ :assertpkg unzip patch
190+ :fetch $ZIPFILES
191+ :mkdir tmp
192+ :cd tmp
193+ @try:
194+ # Do the _AT one first, it overwrites the _DE files.
195+ :sys $UNZIP ../$ZIPFILE_AT
196+ :print >>de_AT.dic
197+ # delete the first line, the word count
198+ :sys ../$VIM de_DE.dic -e -c 1delete -c wq
199+ :cat de_DE.dic >>de_AT.dic
200+ :delete de_DE.dic
201+ :move de_DE.aff de_AT.aff
202+ :move README_de_DE.txt README_de_AT.txt
203+
204+ :sys $UNZIP ../$ZIPFILE_DE
205+ :move de_DE_comb.aff de_DE.aff
206+ :move de_DE_comb.dic de_DE.dic
207+ :move README_de_DE_comb.txt README_de_DE.txt
208+
209+ :sys $UNZIP ../$ZIPFILE_19
210+ :move de_OLDSPELL.aff de_19.aff
211+ :move de_OLDSPELL.dic de_19.dic
212+ # there is no README file
213+ :print There is no README file for the old spelling >!README_de_19.txt
214+ :sys $UNZIP ../$ZIPFILE_20
215+ :move de_DE_neu.aff de_20.aff
216+ :move de_DE_neu.dic de_20.dic
217+ :move README_de_DE_neu.txt README_de_20.txt
218+
219+ :sys $UNZIP ../$ZIPFILE_CH
220+
221+ @import stat
222+ @for nm in ['de_DE', 'de_19', 'de_20', 'de_AT', 'de_CH']:
223+ @for ext in ['aff', 'dic']:
224+ :sys {force} diff ../$(nm).orig.$ext $(nm).$ext >d
225+ @if os.stat('d')[stat.ST_SIZE] > 0:
226+ :copy $(nm).$ext ../$(nm).new.$ext
227+ :sys {force} diff ../README_$(nm).txt README_$(nm).txt >d
228+ @if os.stat('d')[stat.ST_SIZE] > 0:
229+ :copy README_$(nm).txt ../README_$(nm).new.txt
230+ @finally:
231+ :cd ..
232+ :delete {r}{f}{q} tmp
233+ :delete $ZIPFILES
188234
189235
190236 # vim: set sts=4 sw=4 :
Show on old repository browser