diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-02 23:01:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-02 23:01:48 +0800 |
commit | 269dd747b6e61842856031ca14ac26ee884ede4c (patch) | |
tree | b1c0c4f2bd6ebdab076b8b36216d26c77e77b83a /test/functional/api/buffer_updates_spec.lua | |
parent | 3a4db8154ff043f044ab18d5fced42bffb1002fd (diff) | |
download | rneovim-269dd747b6e61842856031ca14ac26ee884ede4c.tar.gz rneovim-269dd747b6e61842856031ca14ac26ee884ede4c.tar.bz2 rneovim-269dd747b6e61842856031ca14ac26ee884ede4c.zip |
refactor(defaults)!: change default 'commentstring' value to empty (#22862)
Diffstat (limited to 'test/functional/api/buffer_updates_spec.lua')
-rw-r--r-- | test/functional/api/buffer_updates_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/api/buffer_updates_spec.lua b/test/functional/api/buffer_updates_spec.lua index 25b838a4af..80e29c1ff2 100644 --- a/test/functional/api/buffer_updates_spec.lua +++ b/test/functional/api/buffer_updates_spec.lua @@ -75,7 +75,7 @@ local function reopenwithfolds(b) local tick = reopen(b, origlines) -- use markers for folds, make all folds open by default - command('setlocal foldmethod=marker foldlevel=20') + command('setlocal foldmethod=marker foldlevel=20 commentstring=/*%s*/') -- add a fold command('2,4fold') |