diff options
| author | Maxime Coste <mawww@kakoune.org> | 2019-06-23 12:03:40 +1000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2019-06-23 12:04:21 +1000 |
| commit | c9858bb6d1a3bf0c99f5387f4e1fd7791dc223b0 (patch) | |
| tree | c31b6ee2a4279fdf81a483e3267e6e26abded7dd /test | |
| parent | 4b7b5d077ced7efd4f67cc619b9f2ddaa731b8d5 (diff) | |
Fix tests with new opt-in quoting
Diffstat (limited to 'test')
| -rwxr-xr-x | test/run | 4 | ||||
| -rw-r--r-- | test/shell/list-syntax/rc | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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 |
