diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index cb9e88c4c..210a687f5 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -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", diff --git a/helix-term/src/keymap/default.rs b/helix-term/src/keymap/default.rs index 6dcff8e04..14c11dafb 100644 --- a/helix-term/src/keymap/default.rs +++ b/helix-term/src/keymap/default.rs @@ -25,7 +25,7 @@ pub fn default() -> HashMap { "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, },