@@ -1187,7 +1187,7 @@ fn extend_next_long_word_end(cx: &mut CommandContext) {
1187
1187
extend_word_impl ( cx, movement:: move_next_long_word_end)
1188
1188
}
1189
1189
1190
- fn will_find_char < F > ( cx : & mut CommandContext , search_fn : F , inclusive : bool , extend : bool )
1190
+ fn find_char < F > ( cx : & mut CommandContext , search_fn : F , inclusive : bool , extend : bool )
1191
1191
where
1192
1192
F : Fn ( RopeSlice , char , usize , usize , bool ) -> Option < usize > + ' static ,
1193
1193
{
@@ -1306,35 +1306,35 @@ fn find_prev_char_impl(
1306
1306
}
1307
1307
1308
1308
fn find_till_char ( cx : & mut CommandContext ) {
1309
- will_find_char ( cx, find_next_char_impl, false , false )
1309
+ find_char ( cx, find_next_char_impl, false , false )
1310
1310
}
1311
1311
1312
1312
fn find_next_char ( cx : & mut CommandContext ) {
1313
- will_find_char ( cx, find_next_char_impl, true , false )
1313
+ find_char ( cx, find_next_char_impl, true , false )
1314
1314
}
1315
1315
1316
1316
fn extend_till_char ( cx : & mut CommandContext ) {
1317
- will_find_char ( cx, find_next_char_impl, false , true )
1317
+ find_char ( cx, find_next_char_impl, false , true )
1318
1318
}
1319
1319
1320
1320
fn extend_next_char ( cx : & mut CommandContext ) {
1321
- will_find_char ( cx, find_next_char_impl, true , true )
1321
+ find_char ( cx, find_next_char_impl, true , true )
1322
1322
}
1323
1323
1324
1324
fn till_prev_char ( cx : & mut CommandContext ) {
1325
- will_find_char ( cx, find_prev_char_impl, false , false )
1325
+ find_char ( cx, find_prev_char_impl, false , false )
1326
1326
}
1327
1327
1328
1328
fn find_prev_char ( cx : & mut CommandContext ) {
1329
- will_find_char ( cx, find_prev_char_impl, true , false )
1329
+ find_char ( cx, find_prev_char_impl, true , false )
1330
1330
}
1331
1331
1332
1332
fn extend_till_prev_char ( cx : & mut CommandContext ) {
1333
- will_find_char ( cx, find_prev_char_impl, false , true )
1333
+ find_char ( cx, find_prev_char_impl, false , true )
1334
1334
}
1335
1335
1336
1336
fn extend_prev_char ( cx : & mut CommandContext ) {
1337
- will_find_char ( cx, find_prev_char_impl, true , true )
1337
+ find_char ( cx, find_prev_char_impl, true , true )
1338
1338
}
1339
1339
1340
1340
fn repeat_last_motion ( cx : & mut CommandContext ) {
0 commit comments