# HG changeset patch # User Mark Koopman # Date 1404146276 25200 # Node ID 5565cbd4a7bc97112ed2fbc83d2aff4a9b67563b # Parent 56683eb09eccdb4a4baf43302761ed348197c1cc Changed hbi to bi, removed mentiond of using "h". With "h" in "hbi", I dont see single character "words" get properly surrounded by double quotes. diff -r 56683eb09ecc -r 5565cbd4a7bc chapters/09.markdown --- a/chapters/09.markdown Thu Apr 04 01:38:14 2013 -0400 +++ b/chapters/09.markdown Mon Jun 30 09:37:56 2014 -0700 @@ -35,7 +35,7 @@ with a bit more meat to it. Run the following command: :::vim - :nnoremap " viwa"hbi"lel + :nnoremap " viwa"bi"lel Now *that's* an interesting mapping! First, go ahead and try it out. Enter normal mode, put your cursor over a word in your text and type `"`. Vim @@ -53,7 +53,6 @@ * `a`: enter insert mode *after* the current character * `"`: insert a `"` into the text, because we're in insert mode * ``: return to normal mode -* `h`: move left one character * `b`: move back to the beginning of the word * `i`: enter insert mode *before* the current character * `"`: insert a `"` into the text again