fix: map switch_to_title_case

pull/12043/head
Nikita Revenco 2024-12-20 07:49:48 +00:00
parent 42e150293a
commit b96e177ec7
2 changed files with 2 additions and 2 deletions

View File

@ -361,7 +361,7 @@ impl MappableCommand {
switch_to_lower_case, "Switch to lowercase",
switch_to_pascal_case, "Switch to PascalCase",
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_kebab_case, "Switch to kebab-case",
page_up, "Move page up",

View File

@ -25,7 +25,7 @@ pub fn default() -> HashMap<Mode, KeyTrie> {
"u" => switch_to_uppercase,
"p" => switch_to_pascal_case,
"c" => switch_to_camel_case,
// "t" => switch_to_title_case,
"t" => switch_to_title_case,
// "s" => switch_to_snake_case,
// "k" => switch_to_kebab_case,
},