mirror of https://github.com/helix-editor/helix
fix: switch to lower|upper case is flipped
parent
c1be961b93
commit
355b2ba290
|
@ -1796,11 +1796,11 @@ fn switch_to_camel_case(cx: &mut Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn switch_to_lower_case(cx: &mut Context) {
|
fn switch_to_lower_case(cx: &mut Context) {
|
||||||
switch_case_impl(cx, |chars| to_upper_case(chars))
|
switch_case_impl(cx, |chars| to_lower_case(chars))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn switch_to_upper_case(cx: &mut Context) {
|
fn switch_to_upper_case(cx: &mut Context) {
|
||||||
switch_case_impl(cx, |chars| to_lower_case(chars))
|
switch_case_impl(cx, |chars| to_upper_case(chars))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn switch_to_alternate_case(cx: &mut Context) {
|
fn switch_to_alternate_case(cx: &mut Context) {
|
||||||
|
|
Loading…
Reference in New Issue