From b57784e06c1db5f000f641affdbe1377097b4fa3 Mon Sep 17 00:00:00 2001 From: Tim Allen Date: Fri, 28 Sep 2018 18:00:20 +1000 Subject: [PATCH] Spaces around ellipses. --- doc/pages/expansions.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/pages/expansions.asciidoc b/doc/pages/expansions.asciidoc index 57c1e4b5..683695e1 100644 --- a/doc/pages/expansions.asciidoc +++ b/doc/pages/expansions.asciidoc @@ -111,7 +111,7 @@ of each selection, you can do something like: ---- eval set -- $kak_selections while [ $# -gt 0 ]; do - # ...do a thing with $1... + # ... do a thing with $1 ... shift done ---- @@ -128,13 +128,13 @@ be exported into the shell's environment. For example: echo %sh{ env | grep ^kak_ } ---- -...will find none of Kakoune's special environment variables, but: +... will find none of Kakoune's special environment variables, but: ---- echo %sh{ env | grep ^kak_ # kak_session } ---- -...will find the `$kak_session` variable because it was mentioned by name +... will find the `$kak_session` variable because it was mentioned by name in a comment, even though it wasn't directly used. TIP: These environment variables are also available in other contexts where