We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff48eaa commit 59df138Copy full SHA for 59df138
t/variable-segment.vim
@@ -164,6 +164,20 @@ describe 'iv'
164
Expect getline(1) == 'theThingILike'
165
end
166
167
+ it 'selects segments after single letter snake case sections'
168
+ put! = 'a_thing_I_like'
169
+ normal! 2|
170
+ normal civtest
171
+ Expect getline(1) == 'a_test_I_like'
172
+ end
173
+
174
+ it 'selects segments after single letter camel sections'
175
+ put! = 'aThingILike'
176
+ normal! 1|
177
178
+ Expect getline(1) == 'aTestILike'
179
180
181
it 'does not cross left snake boundaries'
182
put! = 'foo_bar baz_quux'
183
normal! 10|
0 commit comments