summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-12-07 21:07:59 +0000
committerBram Moolenaar <Bram@vim.org>2005-12-07 21:07:59 +0000
commitd5bc83f576a26dd27fab558fdee472838b66bbb4 (patch)
tree6cb34a2983a9dc0883b2a9d6d6b3e6d13d80c207 /runtime
parent4e330bbf216ca93827778c2dcc8aa1a8f053c9e1 (diff)
updated for version 7.0164v7.0164
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/todo.txt35
-rw-r--r--runtime/doc/version7.txt7
2 files changed, 28 insertions, 14 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index c2f616e6d7..3bade9065e 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 7.0aa. Last change: 2005 Dec 06
+*todo.txt* For Vim version 7.0aa. Last change: 2005 Dec 07
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -37,6 +37,9 @@ differences. Use Amiga code?
"^[.?!]\_[\])'" ]\+"
Using string that was freed or buffer that is overwritten?
+SwapExists with editexisting plugin: Is there a simple way to detect ":tag
+function" and have the remote Vim jump to the tag?
+
When editing a file "a" that is a symbolic link to "b", while another Vim is
editing "b", there is no warning. Follow symlink to make swap file name?
Patch from Stefano Zacchiroli. Updated by James Vega, Dec 2.
@@ -157,6 +160,10 @@ Autoload:
Add ":smap", Select mode mapping? Otherwise: ":sunmap", so that Visual mode
mappings for normal keys can be removed from Select mode.
+When expanding on the command line, recognize shell commands, such as ":!cmd".
+Complete command names by searching in $PATH. When completing file names
+escape special characters ";&<>(){}". (Adri Verhoef)
+
Awaiting response:
- Win32: tearoff menu window should have a scrollbar when it's taller than
the screen.
@@ -902,8 +909,6 @@ MSDOS, OS/2 and Win32:
8 When editing a file on a Samba server, case might matter. ":e file"
followed by ":e FILE" will edit "file" again, even though "FILE" might be
another one. Set last used name in buflist_new()? Fix do_ecmd(), etc.
-8 ":mksession" generates a "cd" command where "aa\#bb" means directory "#bb"
- in "aa", but it's used as "aa#bb". (Ronald Hoellwarth)
8 When a buffer is editing a file like "ftp://mach/file", which is not going
to be used like a normal file name, don't change the slashes to
backslashes. (Ronald Hoellwarth)
@@ -1094,8 +1099,6 @@ Macintosh:
one.
7 When 'showbreak' is set, the amount of space a Tab occupies changes.
Should work like 'showbreak' is inserted without changing the Tabs.
-7 When there is a "help.txt" window in a session file, restoring that
- session will not get the "LOCAL ADDITIONS" back.
7 When 'mousefocus' is set and switching to another window with a typed
command, the mouse pointer may be moved to a part of the window that's
covered by another window and we lose focus. Only move in the y
@@ -1881,7 +1884,6 @@ Built-in script language:
7 Add function to generate unique number (date in milliseconds).
7 Automatically load a function from a file when it is called. Need an
option for the search path. (Sekera)
-7 Persistent variables: "p:var"; stored in viminfo file and sessions files.
Robustness:
@@ -3097,20 +3099,27 @@ Modelines:
or not. Same for .exrc in local dir.
-Options:
-8 Make ":mksession" store buffer-specific options for the specific buffer.
+Sessions:
+8 DOS/Windows: ":mksession" generates a "cd" command where "aa\#bb" means
+ directory "#bb" in "aa", but it's used as "aa#bb". (Ronald Hoellwarth)
+7 When there is a "help.txt" window in a session file, restoring that
+ session will not get the "LOCAL ADDITIONS" back.
8 With ":mksession" always store the 'sessionoptions' option, even when
"options" isn't in it. (St-Amant)
-7 ":with option=value | command": temporarily set an option value and
- restore it after the command has executed.
-7 Setting an option always sets "w_set_curswant", while this is only
- required for a few options. Only do it for those options to avoid the
- side effect.
8 When using ":mksession", also store a command to reset all options to
their default value, before setting the options that are not at their
default value.
7 With ":mksession" also store the tag stack and jump history. (Michal
Malecki)
+7 Persistent variables: "p:var"; stored in viminfo file and sessions files.
+
+
+Options:
+7 ":with option=value | command": temporarily set an option value and
+ restore it after the command has executed.
+7 Setting an option always sets "w_set_curswant", while this is only
+ required for a few options. Only do it for those options to avoid the
+ side effect.
8 Make "old" number options that really give a number of effects into string
options that are a comma separated list. The old number values should
also be supported.
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 80ff683f71..3c8cf6816e 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt* For Vim version 7.0aa. Last change: 2005 Dec 06
+*version7.txt* For Vim version 7.0aa. Last change: 2005 Dec 07
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -847,6 +847,9 @@ Unix: When open() returns EFBIG give an appropriate message.
":mksession" sets the SessionLoad variable to notify plugins. A modeline is
added to the session file to set 'filetype' to "vim".
+In the ATTENTION prompt put the "Delete it" choice before "Quit" to make it
+more logical. (Robert Webb)
+
==============================================================================
COMPILE TIME CHANGES *compile-changes-7*
@@ -1408,4 +1411,6 @@ sticking to the first column.
When using ":wq" and a BufWriteCmd autocmd uses inputsecret() the text was
echoed anyway. Set terminal to raw mode in getcmdline().
+Unix: ":w a;b~c" caused an error in expanding wildcards.
+
vim:tw=78:ts=8:ft=help:norl: