File tree 2 files changed +46
-0
lines changed
2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -115,3 +115,29 @@ Expect (hashtags are not affected):
115
115
## a
116
116
117
117
#hashtag
118
+
119
+ Given markdown;
120
+ #
121
+
122
+ ##
123
+
124
+ Execute (HeaderIncrease with empty atx headings):
125
+ :HeaderIncrease
126
+
127
+ Expect (increase level of all headers):
128
+ ##
129
+
130
+ ###
131
+
132
+ Given markdown;
133
+ ##
134
+
135
+ ###
136
+
137
+ Execute (HeaderDecrease with empty atx headings):
138
+ :HeaderDecrease
139
+
140
+ Expect (decrease level of all headers):
141
+ #
142
+
143
+ ##
Original file line number Diff line number Diff line change @@ -157,3 +157,23 @@ Execute (]h):
157
157
AssertEqual line('.'), 3
158
158
normal ]h
159
159
AssertEqual line('.'), 1
160
+
161
+ Given markdown;
162
+ #
163
+
164
+ ##
165
+
166
+ #
167
+
168
+ ##
169
+
170
+ Execute (]] empty atx heading):
171
+ AssertEqual line('.'), 1
172
+ normal ]]
173
+ AssertEqual line('.'), 3
174
+ normal [[
175
+ AssertEqual line('.'), 1
176
+ normal ][
177
+ AssertEqual line('.'), 5
178
+ normal []
179
+ AssertEqual line('.'), 1
You can’t perform that action at this time.
0 commit comments