469bfd3284dd
Merge.
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Thu, 16 Feb 2017 12:49:58 +0000 |
parents | 3bfec08cd774 (current diff) 2600b031f163 (diff) |
children | a16e1fecfe07 |
branches/tags | (none) |
files |
Changes
--- a/chapters/25.markdown Mon Feb 06 12:24:19 2017 +0000 +++ b/chapters/25.markdown Thu Feb 16 12:49:58 2017 +0000 @@ -48,7 +48,7 @@ :::vim :echo 100.1 -Notice that we're using `echo` here and not `echom` like we usually to. We'll +Notice that we're using `echo` here and not `echom` like we usually do. We'll talk about why in a moment. Vim displays `100.1` as expected. You can also use exponential notation. Run
--- a/chapters/28.markdown Mon Feb 06 12:24:19 2017 +0000 +++ b/chapters/28.markdown Thu Feb 16 12:49:58 2017 +0000 @@ -34,9 +34,9 @@ the path of the previous buffer. You can play with it using `echom` if you want to see for yourself. -Once `bufname` is evaluated Vim the string `"rightbelow vsplit bar.txt"`. The -`execute` command evaluates this as a Vimscript command which opens the split -with the file. +Once `bufname` is evaluated Vim builds the string `"rightbelow vsplit +bar.txt"`. The `execute` command evaluates this as a Vimscript command which +opens the split with the file. Is Execute Dangerous? ---------------------