summaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/syntax.txt7
-rw-r--r--runtime/doc/tips.txt4
-rw-r--r--runtime/doc/todo.txt37
-rw-r--r--runtime/doc/usr_06.txt7
-rw-r--r--runtime/doc/version7.txt7
5 files changed, 39 insertions, 23 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
index 0b88a6db1..ff3b7f9ad 100644
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -1,4 +1,4 @@
-*syntax.txt* For Vim version 7.0aa. Last change: 2006 Jan 23
+*syntax.txt* For Vim version 7.0aa. Last change: 2006 Feb 16
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -4257,9 +4257,8 @@ But for using 16 colors in an rxvt these should work with terminfo: >
<
*colortest.vim*
To test your color setup, a file has been included in the Vim distribution.
-To use it, execute these commands: >
- :e $VIMRUNTIME/syntax/colortest.vim
- :so %
+To use it, execute this command: >
+ :runtime syntax/colortest.vim
Some versions of xterm (and other terminals, like the Linux console) can
output lighter foreground colors, even though the number of colors is defined
diff --git a/runtime/doc/tips.txt b/runtime/doc/tips.txt
index 5e40cdaf4..2fc1bee0c 100644
--- a/runtime/doc/tips.txt
+++ b/runtime/doc/tips.txt
@@ -1,4 +1,4 @@
-*tips.txt* For Vim version 7.0aa. Last change: 2006 Feb 13
+*tips.txt* For Vim version 7.0aa. Last change: 2006 Feb 16
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -494,7 +494,7 @@ Note that it doesn't recognize strings or comments in the text.
endif
endfunction
- autocmd CursorMoved * call s:Highlight_Matching_Paren()
+ autocmd CursorMoved,CursorMovedI * call s:Highlight_Matching_Paren()
autocmd InsertEnter * match none
<
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index dc1e8db76..bcdc52c1c 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 15
+*todo.txt* For Vim version 7.0aa. Last change: 2006 Feb 16
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -32,20 +32,23 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
Support WINDOW TABS. Works like several pages, each with their own split
windows. Let's call them "tab pages".
- - Mouse click in tab name should select that tab.
- - line at top of frame with tabs.
- for the name ignore the help window, unless it's the only one).
- Add a number for the window count?
- Add a '+' if one of the windows is modified?
- Add 'tabtext' option, like 'statusline'.
- Add an "X" to close the current tab (like firefox).
- - When deleting a buffer also close windows in other tab pages.
- - check all places where firstwin and lastwin are used
+ - check all places where lastwin is used
+ - check all places where win_valid() is used
+ - check all places where last_window() is used
+ - ":tabclose N" close tab N
+ - Add ":tabonly" - close all other tabs.
- check all places wheren only_one_window() is used.
- Add tabpage(): returns current tab page number.
+ - ":tabsplit" makes a copy of the current tab page.
+ - Add TabLeavePre and TabEnterPost autocommands
+ - line at top of frame with tabs.
+ Add 'tabtext' option, like 'statusline'.
+ - make a diff for each tab page separately.
- E999
- - ":tabclose N" close tab N
- docs:
+ General remark: commands that work on windows only work on the windows
+ in the current tab page. Including :windo.
+ Session file only contains the current tab page.
:tabedit
:tabfind
:tab N
@@ -57,6 +60,12 @@ windows. Let's call them "tab pages".
next one. Hint in docs: To mess with another buffer, without
changing the window layout, do this in another tab.
'tabline' values 0/1/2
+ mouse click in tabline:
+ select a tab page
+ X closes current tab page
+ :argall and :ball only opens window for buffers that are not in any
+ window in any tab page
+ :diffoff only in the current tab page
- add GUI Tabs for some systems.
Patch for GTK 1.2 passed on by Christian Michon, 2004 Jan 6.
Simple patch for GTK by Luis M (nov 7).
@@ -65,11 +74,15 @@ windows. Let's call them "tab pages".
Crash with X command server (Ciaran McCreesh).
-Ctags still hasn't included the patch...
+Ctags still hasn't included the patch. Darren is looking for someone to do
+maintanance.
"fsutil hardlink" can create a hard link on an NTFS file system. (Daniel
Einspanjer) What library function can detect that?
+Win32: use GetFileInformationByHandle() to detect hard links on NTFS?
+(George Reilly)
+
spelling:
- Also use the spelling dictionary for dictionary completion.
When 'dictionary' is empty and/or when "kspell" is in 'complete'.
diff --git a/runtime/doc/usr_06.txt b/runtime/doc/usr_06.txt
index 4731762d7..a68340187 100644
--- a/runtime/doc/usr_06.txt
+++ b/runtime/doc/usr_06.txt
@@ -1,4 +1,4 @@
-*usr_06.txt* For Vim version 7.0aa. Last change: 2002 Jul 14
+*usr_06.txt* For Vim version 7.0aa. Last change: 2006 Feb 16
VIM USER MANUAL - by Bram Moolenaar
@@ -179,10 +179,9 @@ You could also write your own color scheme. This is how you do it:
colorscheme mine
If you want to see what the most often used color combinations look like, use
-these commands: >
+this command: >
- :edit $VIMRUNTIME/syntax/colortest.vim
- :source %
+ :runtime syntax/colortest.vim
You will see text in various color combinations. You can check which ones are
readable and look nice.
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index bbd3d04d0..7bfc4ec8d 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 14
+*version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 16
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1010,6 +1010,9 @@ asdf.c" when it sets the filename for the buffer.
Insert mode completion for whole lines now also searches unloaded buffers.
+The colortest.vim script can now be invoked directly with ":source" or
+":runtime".
+
==============================================================================
COMPILE TIME CHANGES *compile-changes-7*
@@ -1696,4 +1699,6 @@ event that removed the balloon again. Ignore the key release event.
'titleold' was included in ":mkexrc" and ":mksession" files.
+":set background&" didn't use the same logic as was used when starting up.
+
vim:tw=78:ts=8:ft=help:norl: