aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/003_cindent_spec.lua
diff options
context:
space:
mode:
authorckelsel <ckelsel@hotmail.com>2017-10-08 09:35:23 +0800
committerckelsel <ckelsel@hotmail.com>2017-10-08 09:35:23 +0800
commit76606b6bc587fddcf990cf40a39521750734a80d (patch)
tree2810779733954dccec0bae739768b8d4e4186d4c /test/functional/legacy/003_cindent_spec.lua
parentf2b9ccec106b6c4619cc762ea77546810f1cbfd4 (diff)
parent032b088c848585e60e8dc1a210f240bad6bb3387 (diff)
downloadrneovim-76606b6bc587fddcf990cf40a39521750734a80d.tar.gz
rneovim-76606b6bc587fddcf990cf40a39521750734a80d.tar.bz2
rneovim-76606b6bc587fddcf990cf40a39521750734a80d.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'test/functional/legacy/003_cindent_spec.lua')
-rw-r--r--test/functional/legacy/003_cindent_spec.lua34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/functional/legacy/003_cindent_spec.lua b/test/functional/legacy/003_cindent_spec.lua
index 202baadd4c..58e87354fb 100644
--- a/test/functional/legacy/003_cindent_spec.lua
+++ b/test/functional/legacy/003_cindent_spec.lua
@@ -4718,4 +4718,38 @@ describe('cindent', function()
JSEND
]=])
end)
+
+ it('line continuations in macros / vim-patch 8.0.0148', function()
+ insert_([=[
+ /* start of define */
+ {
+ }
+ #define AAA \
+ BBB\
+ CCC
+
+ #define CNT \
+ 1 + \
+ 2 + \
+ 4
+ /* end of define */]=])
+
+ feed_command('set cino&')
+ feed_command('/start of define')
+ feed('=/end of define<cr>')
+
+ expect([=[
+ /* start of define */
+ {
+ }
+ #define AAA \
+ BBB\
+ CCC
+
+ #define CNT \
+ 1 + \
+ 2 + \
+ 4
+ /* end of define */]=])
+ end)
end)