Spaces around ellipses.
This commit is contained in:
parent
3c8d160a62
commit
b57784e06c
|
@ -111,7 +111,7 @@ of each selection, you can do something like:
|
||||||
----
|
----
|
||||||
eval set -- $kak_selections
|
eval set -- $kak_selections
|
||||||
while [ $# -gt 0 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
# ...do a thing with $1...
|
# ... do a thing with $1 ...
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
----
|
----
|
||||||
|
@ -128,13 +128,13 @@ be exported into the shell's environment. For example:
|
||||||
echo %sh{ env | grep ^kak_ }
|
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 }
|
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.
|
in a comment, even though it wasn't directly used.
|
||||||
|
|
||||||
TIP: These environment variables are also available in other contexts where
|
TIP: These environment variables are also available in other contexts where
|
||||||
|
|
Loading…
Reference in New Issue
Block a user