c900d30856a9
Merge.
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Wed, 04 Apr 2012 13:48:45 -0400 |
parents | e668fd659847 (current diff) 30546599658c (diff) |
children | 33e01424adaa |
branches/tags | (none) |
files |
Changes
--- a/chapters/15.markdown Wed Apr 04 13:45:32 2012 -0400 +++ b/chapters/15.markdown Wed Apr 04 13:48:45 2012 -0400 @@ -147,7 +147,7 @@ * If your operator-pending mapping ends with some text visually selected, Vim will operate on that text. -* Otherwise, Vim will operator on the text between the original cursor position +* Otherwise, Vim will operate on the text between the original cursor position and the new position. Exercises
--- a/chapters/20.markdown Wed Apr 04 13:45:32 2012 -0400 +++ b/chapters/20.markdown Wed Apr 04 13:48:45 2012 -0400 @@ -10,13 +10,13 @@ :::vim :let b:hello = "world" - :echo hello + :echo b:hello As expected, Vim displays "world". Now switch to the other buffer and run the echo command again: :::vim - :echo hello + :echo b:hello This time Vim throws an error, saying it can't find the variable.