# HG changeset patch # User Steve Losh # Date 1487249398 0 # Node ID 469bfd3284dddc1bbb7ae1e6a2dcc9507543aaa6 # Parent 3bfec08cd774271897841d85374d43f265cd4784# Parent 2600b031f163440d47b41c56be4040d503cdd3eb Merge. diff -r 3bfec08cd774 -r 469bfd3284dd chapters/25.markdown --- 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 diff -r 3bfec08cd774 -r 469bfd3284dd chapters/28.markdown --- 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? ---------------------