]> granicus.if.org Git - vim/commitdiff
updated for version 7.0105 v7.0105
authorBram Moolenaar <Bram@vim.org>
Fri, 8 Jul 2005 22:31:03 +0000 (22:31 +0000)
committerBram Moolenaar <Bram@vim.org>
Fri, 8 Jul 2005 22:31:03 +0000 (22:31 +0000)
runtime/doc/todo.txt
runtime/doc/version7.txt
src/ex_cmds.h
src/proto/ex_cmds2.pro

index ac2a9d3b08a97168c759df6ddf163907500aa3da..449fd9969c81d14edc7adc9572e4525774ade43e 100644 (file)
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 7.0aa.  Last change: 2005 Jul 07
+*todo.txt*      For Vim version 7.0aa.  Last change: 2005 Jul 08
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -30,8 +30,6 @@ be worked on, but only if you sponsor Vim development.  See |sponsor|.
                                                        *known-bugs*
 -------------------- Known bugs and current work -----------------------
 
-Test59 crashes occasionally (but not in the debugger....)
-
 Add extra list of file locations.  Can be used with:
     :ltag            list of matching tags, like :tselect
 
@@ -57,6 +55,10 @@ Win32: Balloon text can't contain line break.
 
 Win32: Crash when pasting Simplified Chinese in utf-8. (rainux, 2005 June 20)
 
+Netrw plugin problems:
+- when 'autochdir' is set the current dir is wrong (Salman Halim)
+- "cd -" doesn't work. (Suresh Govindachar)
+
 Mac unicode patch (Da Woon Jung):
 - selecting proportional font breaks display
 - UTF-8 text causes display problems.  Font replacement causes this.
index beb488511e0da0bb75498855d248e4bf7f47f6c6..f6d4965f99ae398425825b5ed953ec51df7bd3de 100644 (file)
@@ -1,4 +1,4 @@
-*version7.txt*  For Vim version 7.0aa.  Last change: 2005 Jun 30
+*version7.txt*  For Vim version 7.0aa.  Last change: 2005 Jul 08
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -675,6 +675,9 @@ restarted.
 When using @= in an expression the value is expression @= contains.  ":let @=
 = value" can be used to set the register contents.
 
+A ! can be added to ":popup" to have the popup menu appear at the mouse
+pointer position instead of the text cursor.
+
 ==============================================================================
 COMPILE TIME CHANGES                                   *compile-changes-7*
 
@@ -1164,4 +1167,7 @@ When using ":e ++enc=name file" and iconv() was used for conversion an error
 caused a fallback to no conversion.  Now replace a character with '?' and
 continue.
 
+When opening a new buffer the local value of 'bomb' was not initialized from
+the global value.
+
  vim:tw=78:ts=8:ft=help:norl:
index dab4c4a1d213ed289bec09493861d1071a67e411..51053c9b2d52bb00ce77759c260d02d203d9e83d 100644 (file)
@@ -600,7 +600,7 @@ EX(CMD_pedit,               "pedit",        ex_pedit,
 EX(CMD_pop,            "pop",          ex_tag,
                        RANGE|NOTADR|BANG|COUNT|TRLBAR|ZEROR),
 EX(CMD_popup,          "popup",        ex_popup,
-                       NEEDARG|EXTRA|TRLBAR|NOTRLCOM|CMDWIN),
+                       NEEDARG|EXTRA|BANG|TRLBAR|NOTRLCOM|CMDWIN),
 EX(CMD_ppop,           "ppop",         ex_ptag,
                        RANGE|NOTADR|BANG|COUNT|TRLBAR|ZEROR),
 EX(CMD_preserve,       "preserve",     ex_preserve,
index 66584f5b0fa28d051f0a7501a0e8a659c55db5ef..35ccc203b83c17bfb4c7422ab73c0b828d84c871 100644 (file)
@@ -61,10 +61,10 @@ linenr_T *source_breakpoint __ARGS((void *cookie));
 int *source_dbg_tick __ARGS((void *cookie));
 int source_level __ARGS((void *cookie));
 int do_source __ARGS((char_u *fname, int check_other, int is_vimrc));
-void free_scriptnames __ARGS((void));
 void ex_scriptnames __ARGS((exarg_T *eap));
 void scriptnames_slash_adjust __ARGS((void));
 char_u *get_scriptname __ARGS((scid_T id));
+void free_scriptnames __ARGS((void));
 char *fgets_cr __ARGS((char *s, int n, FILE *stream));
 char_u *getsourceline __ARGS((int c, void *cookie, int indent));
 void script_line_start __ARGS((void));