# HG changeset patch # User Steve Losh # Date 1365044858 14400 # Node ID 85ea6213b42a6901eb1d61c11227d10b93b9d360 # Parent 14c4df8de4f0586ec3b928277da0a146ee284e53# Parent 501a4a2cadcec20855a9c9693d501c75b428b4c5 Merge. diff -r 14c4df8de4f0 -r 85ea6213b42a chapters/52.markdown --- 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: