summaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-02-10 23:23:57 +0000
committerBram Moolenaar <Bram@vim.org>2006-02-10 23:23:57 +0000
commitf52c725c4739f2d3368029d67218d6cae0d87995 (patch)
tree15779b49216c2561112b3454c36020b879ee6876 /runtime/doc
parentc7453f52d4eb5a5259b6b587d62b7e99e1ebdd10 (diff)
downloadvim-git-f52c725c4739f2d3368029d67218d6cae0d87995.tar.gz
updated for version 7.0196v7.0196
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/todo.txt17
-rw-r--r--runtime/doc/version7.txt22
2 files changed, 17 insertions, 22 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 149af4dbe..23267a69d 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 7.0aa. Last change: 2006 Feb 09
+*todo.txt* For Vim version 7.0aa. Last change: 2006 Feb 10
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -32,23 +32,14 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
Crash with X command server (Ciaran McCreesh).
-Add ":lcscope" to use location list instead of quickfix list.
-
ccomplete / omnicomplete:
-When editing compl_leader <CR> should accept the current match.
-Somehow select another match without changing the compl_leader, so that you
-can use CTRL-L next? Perhaps with <S-Up> and <S-Down>?
-- Flickering because of syntax highlighting redrawing further lines.
-- Complete the longest common match instead of the first match?
- Do this when "longest" is in 'completeopt'.
- Pressing CTRL-N or CTRL-P will get the whole match, as before.
- Need to postpone inserting anything until all matches have been found.
- Then add a completion item with the longest common string (after what was
- typed), if there is one.
- For C add tag "kind" field to each match?
+- Flickering because of syntax highlighting redrawing further lines.
- Finding out if an item has members (to add '.' or '->') requires a grep in
the tags files, that is very slow. Is there another solution? At least
stop at the first match.
+ Could build the list of items for each structure in memory. Is that faster?
+ Not using too much memory?
- When a typedef or struct is local to a file only use it in that file?
- Special mappings for when the popup menu is visible? Would allow for making
a specific selection (e.g, methods vs variables).
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 17d293110..14e378a52 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 09
+*version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 10
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -457,13 +457,6 @@ Win32: The ":winpos" command now also works in the console. (Vipin Aravind)
|:caddbuffer| Add errors from the current buffer to the quickfix
list.
-|:ltag| Jump to a tag and add matching tags to a location list.
-|:lmake| Like |:make| but use the location list.
-|:lgrep| Like |:grep| but use the location list.
-|:lgrepadd| Like |:grepadd| but use the location list.
-|:lvimgrep| Like |:vimgrep| but use the location list.
-|:lvimgrepadd| Like |:vimgrepadd| but use the location list.
-|:lhelpgrep| Like |:helpgrep| but use the location list.
|:lfile| Like |:cfile| but use the location list.
|:lgetfile| Like |:cgetfile| but use the location list.
|:laddfile| Like |:caddfile| but use the location list.
@@ -474,7 +467,7 @@ Win32: The ":winpos" command now also works in the console. (Vipin Aravind)
|:ll| Like |:cc| but use the location list.
|:llist| Like |:clist| but use the location list.
|:lnext| Like |:cnext| but use the location list.
-|:lprev| Like |:cprev| but use the location list.
+|:lprevious| Like |:cprevious| but use the location list.
|:lNext| Like |:cNext| but use the location list.
|:lfirst| Like |:cfirst| but use the location list.
|:lrewind| Like |:crewind| but use the location list.
@@ -487,6 +480,14 @@ Win32: The ":winpos" command now also works in the console. (Vipin Aravind)
|:lwindow| Like |:cwindow| but use the location list.
|:lopen| Like |:copen| but use the location list.
|:lclose| Like |:cclose| but use the location list.
+|:lmake| Like |:make| but use the location list.
+|:lgrep| Like |:grep| but use the location list.
+|:lgrepadd| Like |:grepadd| but use the location list.
+|:lvimgrep| Like |:vimgrep| but use the location list.
+|:lvimgrepadd| Like |:vimgrepadd| but use the location list.
+|:lhelpgrep| Like |:helpgrep| but use the location list.
+|:lcscope| Like |:cscope| but use the location list.
+|:ltag| Jump to a tag and add matching tags to a location list.
Ex command modifiers: ~
@@ -1682,4 +1683,7 @@ mapped. Use ":normal!" instead of ":normal". (Tony Apuzzo)
Crashed when expanding a file name argument in backticks.
+In some situations the menu and scrollbar didn't work, when the value contains
+a CSI byte. (Yukihiro Nakadaira)
+
vim:tw=78:ts=8:ft=help:norl: