Mercurial > hg > RemoteEditor > vim7
diff runtime/doc/repeat.txt @ 39:c16898406ff2
synchorinize version 7.3.081
author | one@zeus.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 17 Dec 2010 17:43:06 +0900 |
parents | e170173ecb68 |
children | 67300faee616 |
line wrap: on
line diff
--- a/runtime/doc/repeat.txt Wed Nov 26 18:20:31 2008 +0900 +++ b/runtime/doc/repeat.txt Fri Dec 17 17:43:06 2010 +0900 @@ -1,4 +1,4 @@ -*repeat.txt* For Vim version 7.2. Last change: 2007 Aug 12 +*repeat.txt* For Vim version 7.3. Last change: 2009 Nov 04 VIM REFERENCE MANUAL by Bram Moolenaar @@ -217,7 +217,7 @@ Don't use "ucs-2" or "ucs-4", scripts cannot be in these encodings (they would contain NUL bytes). When a sourced script starts with a BOM (Byte Order - Mark) in utf-8 format Vim will recognized it, no need + Mark) in utf-8 format Vim will recognize it, no need to use ":scriptencoding utf-8" then. When compiled without the |+multi_byte| feature this @@ -332,6 +332,12 @@ inserted freely; it depends on the position where a command is split up whether additional whitespace is allowed or not. +When a space is required it's best to put it right after the backslash. A +space at the end of a line is hard to see and may be accidentally deleted. > + :syn match Comment + \ "very long regexp" + \ keepend + There is a problem with the ":append" and ":insert" commands: > :1append \asdf @@ -564,7 +570,7 @@ ============================================================================== 6. Profiling *profile* *profiling* -Profiling means that Vim measures the time that is spend on executing +Profiling means that Vim measures the time that is spent on executing functions and/or scripts. The |+profile| feature is required for this. It is only included when Vim was compiled with "huge" features. {Vi does not have profiling}