We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60defd0 commit e443cdcCopy full SHA for e443cdc
1 file changed
test/indent.vimspec
@@ -119,6 +119,15 @@ Describe filetype indent
119
End
120
121
Describe logical line
122
+ It indents like the previous line
123
+ let in = "\<CR>i = 1"
124
+ let out = [
125
+ \ '',
126
+ \ 'i = 1',
127
+ \]
128
+ Assert Equals(Insert(in), Buffer(out))
129
+ End
130
+
131
It indents like the previous line (line continuation)
132
let in = "def func():\<CR>"
133
let in .= "i = 1 + \\\<CR>2 + \\\<CR>3\<CR>"
0 commit comments