mirror of https://github.com/helix-editor/helix
fix: map switch_to_title_case
parent
42e150293a
commit
b96e177ec7
|
@ -361,7 +361,7 @@ impl MappableCommand {
|
||||||
switch_to_lower_case, "Switch to lowercase",
|
switch_to_lower_case, "Switch to lowercase",
|
||||||
switch_to_pascal_case, "Switch to PascalCase",
|
switch_to_pascal_case, "Switch to PascalCase",
|
||||||
switch_to_camel_case, "Switch to camelCase",
|
switch_to_camel_case, "Switch to camelCase",
|
||||||
// switch_to_title_case, "Switch to Title Case",
|
switch_to_title_case, "Switch to Title Case",
|
||||||
// switch_to_snake_case, "Switch to snake_case",
|
// switch_to_snake_case, "Switch to snake_case",
|
||||||
// switch_to_kebab_case, "Switch to kebab-case",
|
// switch_to_kebab_case, "Switch to kebab-case",
|
||||||
page_up, "Move page up",
|
page_up, "Move page up",
|
||||||
|
|
|
@ -25,7 +25,7 @@ pub fn default() -> HashMap<Mode, KeyTrie> {
|
||||||
"u" => switch_to_uppercase,
|
"u" => switch_to_uppercase,
|
||||||
"p" => switch_to_pascal_case,
|
"p" => switch_to_pascal_case,
|
||||||
"c" => switch_to_camel_case,
|
"c" => switch_to_camel_case,
|
||||||
// "t" => switch_to_title_case,
|
"t" => switch_to_title_case,
|
||||||
// "s" => switch_to_snake_case,
|
// "s" => switch_to_snake_case,
|
||||||
// "k" => switch_to_kebab_case,
|
// "k" => switch_to_kebab_case,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue