summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank LENORMAND <lenormf@gmail.com>2018-11-30 21:15:52 +0300
committerFrank LENORMAND <lenormf@gmail.com>2018-12-01 07:40:55 +0300
commit17ebc582b6dabe736d82df85cd51ef4428d2f681 (patch)
tree93d848a30184931d9bd7954a0bb9b82290609af6
parent16908bf0914e012c4f68de5d875e169f61f2cebd (diff)
rc scheme: Fix the initialization of the static words
Fixes #2607
-rw-r--r--rc/extra/scheme.kak2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc/extra/scheme.kak b/rc/extra/scheme.kak
index df7510e2..4c38f8a5 100644
--- a/rc/extra/scheme.kak
+++ b/rc/extra/scheme.kak
@@ -75,7 +75,7 @@ evaluate-commands %sh{
join () { printf "%s" "$1" | tr -s ' \n\t' "$2"; }
printf '%s\n' "hook global WinSetOption filetype=scheme %{
- set-option window static_words '$(join "$keywords:$meta:$operators:$builtins" ':' )'
+ set-option window static_words $(join "$keywords $meta $operators $builtins" ' ' )
}"
exact_quote () {