85ea6213b42a
Merge.
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Wed, 03 Apr 2013 23:07:38 -0400 |
parents | 14c4df8de4f0 (current diff) 501a4a2cadce (diff) |
children | 4d881a6b4d15 |
branches/tags | (none) |
files | chapters/52.markdown |
Changes
--- a/chapters/52.markdown Wed Apr 03 23:07:34 2013 -0400 +++ b/chapters/52.markdown Wed Apr 03 23:07:38 2013 -0400 @@ -33,7 +33,7 @@ if that variable isn't already set. We've seen this kind of check before. This will allow users to override it if `potion` isn't in their `$PATH` by -putting a line like `set g:potion_command = "/Users/sjl/src/potion/potion"` in +putting a line like `let g:potion_command = "/Users/sjl/src/potion/potion"` in their `~/.vimrc` file. The last line adds a buffer-local mapping that calls a function we've defined @@ -271,7 +271,7 @@ call append(0, split(bytecode, '\v\n')) endfunction -The `append()` Vim function take two arguments: a line number to append after, +The `append()` Vim function takes two arguments: a line number to append after, and a list of Strings to append as lines. For example, try running the following command: