summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2019-06-23 12:03:40 +1000
committerMaxime Coste <mawww@kakoune.org>2019-06-23 12:04:21 +1000
commitc9858bb6d1a3bf0c99f5387f4e1fd7791dc223b0 (patch)
treec31b6ee2a4279fdf81a483e3267e6e26abded7dd /test
parent4b7b5d077ced7efd4f67cc619b9f2ddaa731b8d5 (diff)
Fix tests with new opt-in quoting
Diffstat (limited to 'test')
-rwxr-xr-xtest/run4
-rw-r--r--test/shell/list-syntax/rc2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/run b/test/run
index 36f01358..c6a65e98 100755
--- a/test/run
+++ b/test/run
@@ -23,8 +23,8 @@ main() {
exec -with-hooks <c-l>
eval -buffer *debug* write debug
nop %sh{
- printf %s\\n "$kak_selections" > selections
- printf %s\\n "$kak_selections_desc" > state
+ printf %s\\n "$kak_quoted_selections" > selections
+ printf %s\\n "$kak_quoted_selections_desc" > state
}
write out
quit!
diff --git a/test/shell/list-syntax/rc b/test/shell/list-syntax/rc
index e60c1ad5..93b5e169 100644
--- a/test/shell/list-syntax/rc
+++ b/test/shell/list-syntax/rc
@@ -1,6 +1,6 @@
declare-option str-list my_list 'foo' 'bar' '''foo''bar'''
evaluate-commands %sh{
- eval set -- $kak_opt_my_list
+ eval set -- $kak_quoted_opt_my_list
for elem; do
echo exec "'i$(printf %s "$elem" | sed -e s/\'/\'\'/g)<ret><esc>'"
done