diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-18 21:40:56 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-18 21:40:56 +0000 |
commit | 97b2ad35425fd589c4ff816d1f1161f2f7f6a93d (patch) | |
tree | a0fed79e1bd28b00c32554c62110903d49ac9b20 /runtime/doc/version7.txt | |
parent | 658b74a7360cff23939dbf5075b8e18e38c77a81 (diff) | |
download | vim-97b2ad35425fd589c4ff816d1f1161f2f7f6a93d.zip |
updated for version 7.0228
Diffstat (limited to 'runtime/doc/version7.txt')
-rw-r--r-- | runtime/doc/version7.txt | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt index 8a7f01871..a7d39a002 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 Mar 17 +*version7.txt* For Vim version 7.0aa. Last change: 2006 Mar 18 VIM REFERENCE MANUAL by Bram Moolenaar @@ -562,6 +562,7 @@ Options: ~ 'synmaxcol' maximum column to look for syntax items; avoids very slow redrawing when there are very long lines 'verbosefile' Log messages in a file. +'winfixwidth' window with fixed width, similar to 'winfixheight' Ex commands: ~ @@ -714,6 +715,7 @@ New and extended functions: ~ |split()| split a String into a List |spellbadword()| get a badly spelled word |spellsuggest()| get suggestions for correct spelling +|str2nr()| convert a string to a number, base 8, 10 or 16 |string()| string representation of a List or Dictionary |system()| filters {input} through a shell command |taglist()| get list of matching tags (Yegappan Lakshmanan) @@ -899,6 +901,8 @@ When editing a search pattern for a "/" or "?" command and 'incsearch' is set CTRL-L can be used to add a character from the current match. CTRL-R CTRL-W will add a word, but exclude the part of the word that was already typed. +Ruby interface: add line number methods. (Ryan Paul) + ============================================================================== IMPROVEMENTS *improvements-7* @@ -972,9 +976,11 @@ delete the raw text. Helps if the file has a .gz extension but is not actually compressed. (Andrew Pimlott) When C, C++ or IDL syntax is used, may additionally load doxygen syntax. -Also support setting the filetype to "cdoxygen" for C plus doxygen syntax. (Michael Geddes) +Support setting 'filetype' and 'syntax' to "aaa.bbb" for "aaa" plus "bbb" +filetype or syntax. + The ":registers" command now displays multi-byte characters properly. VMS: In the usage message mention that a slash can be used to make a flag @@ -1223,6 +1229,9 @@ was set in an error handler. When there are several matching tags, the ":tag <name>" and CTRL-] commands jump to the [count] matching tag. (Yegappan Lakshmanan) +Win32: In the batch files generated by the install program, use $VIMRUNTIME or +$VIM if it's set. Example provided by Mathias Michaelis. +Also create a vimtutor.bat batch file. ============================================================================== COMPILE TIME CHANGES *compile-changes-7* @@ -2012,5 +2021,7 @@ redrawing. Win32: When using Korean IME making it active didn't work properly. (Moon, Yu-sung, 2005 March 21) +Ruby interface: when inserting/deleting lines display wasn't updated. (Ryan +Paul) vim:tw=78:ts=8:ft=help:norl: |