• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revisãocf83dacfa25fb1fd8d4929ff2abe871c72ad94a8 (tree)
Hora2005-07-09 07:31:03
Autorvimboss
Commitervimboss

Mensagem de Log

updated for version 7.0105

Mudança Sumário

Diff

diff -r 53929c7478df -r cf83dacfa25f runtime/doc/todo.txt
--- a/runtime/doc/todo.txt Fri Jul 08 22:28:00 2005 +0000
+++ b/runtime/doc/todo.txt Fri Jul 08 22:31:03 2005 +0000
@@ -1,4 +1,4 @@
1-*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 07
1+*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 08
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -30,8 +30,6 @@
3030 *known-bugs*
3131 -------------------- Known bugs and current work -----------------------
3232
33-Test59 crashes occasionally (but not in the debugger....)
34-
3533 Add extra list of file locations. Can be used with:
3634 :ltag list of matching tags, like :tselect
3735
@@ -57,6 +55,10 @@
5755
5856 Win32: Crash when pasting Simplified Chinese in utf-8. (rainux, 2005 June 20)
5957
58+Netrw plugin problems:
59+- when 'autochdir' is set the current dir is wrong (Salman Halim)
60+- "cd -" doesn't work. (Suresh Govindachar)
61+
6062 Mac unicode patch (Da Woon Jung):
6163 - selecting proportional font breaks display
6264 - UTF-8 text causes display problems. Font replacement causes this.
diff -r 53929c7478df -r cf83dacfa25f runtime/doc/version7.txt
--- a/runtime/doc/version7.txt Fri Jul 08 22:28:00 2005 +0000
+++ b/runtime/doc/version7.txt Fri Jul 08 22:31:03 2005 +0000
@@ -1,4 +1,4 @@
1-*version7.txt* For Vim version 7.0aa. Last change: 2005 Jun 30
1+*version7.txt* For Vim version 7.0aa. Last change: 2005 Jul 08
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -675,6 +675,9 @@
675675 When using @= in an expression the value is expression @= contains. ":let @=
676676 = value" can be used to set the register contents.
677677
678+A ! can be added to ":popup" to have the popup menu appear at the mouse
679+pointer position instead of the text cursor.
680+
678681 ==============================================================================
679682 COMPILE TIME CHANGES *compile-changes-7*
680683
@@ -1164,4 +1167,7 @@
11641167 caused a fallback to no conversion. Now replace a character with '?' and
11651168 continue.
11661169
1170+When opening a new buffer the local value of 'bomb' was not initialized from
1171+the global value.
1172+
11671173 vim:tw=78:ts=8:ft=help:norl:
diff -r 53929c7478df -r cf83dacfa25f src/ex_cmds.h
--- a/src/ex_cmds.h Fri Jul 08 22:28:00 2005 +0000
+++ b/src/ex_cmds.h Fri Jul 08 22:31:03 2005 +0000
@@ -600,7 +600,7 @@
600600 EX(CMD_pop, "pop", ex_tag,
601601 RANGE|NOTADR|BANG|COUNT|TRLBAR|ZEROR),
602602 EX(CMD_popup, "popup", ex_popup,
603- NEEDARG|EXTRA|TRLBAR|NOTRLCOM|CMDWIN),
603+ NEEDARG|EXTRA|BANG|TRLBAR|NOTRLCOM|CMDWIN),
604604 EX(CMD_ppop, "ppop", ex_ptag,
605605 RANGE|NOTADR|BANG|COUNT|TRLBAR|ZEROR),
606606 EX(CMD_preserve, "preserve", ex_preserve,
diff -r 53929c7478df -r cf83dacfa25f src/proto/ex_cmds2.pro
--- a/src/proto/ex_cmds2.pro Fri Jul 08 22:28:00 2005 +0000
+++ b/src/proto/ex_cmds2.pro Fri Jul 08 22:31:03 2005 +0000
@@ -61,10 +61,10 @@
6161 int *source_dbg_tick __ARGS((void *cookie));
6262 int source_level __ARGS((void *cookie));
6363 int do_source __ARGS((char_u *fname, int check_other, int is_vimrc));
64-void free_scriptnames __ARGS((void));
6564 void ex_scriptnames __ARGS((exarg_T *eap));
6665 void scriptnames_slash_adjust __ARGS((void));
6766 char_u *get_scriptname __ARGS((scid_T id));
67+void free_scriptnames __ARGS((void));
6868 char *fgets_cr __ARGS((char *s, int n, FILE *stream));
6969 char_u *getsourceline __ARGS((int c, void *cookie, int indent));
7070 void script_line_start __ARGS((void));
Show on old repository browser