Capitalize selection in Sublime Text

7.4k Views Asked by At

Is there a way to capitalize a selection in Sublime? For example, if I have some text like word, I'd like the output to be Word.

I know that there is already an option to convert case into lower case or upper case, but those would result in word and WORD respectively. Is there a way to only capitalize the first letter?

2

There are 2 best solutions below

0
On BEST ANSWER

You can do it using the menu Edit>Convert Case>Title Case.

In case you want to set a keybinding the name of the associated command is title_case.

1
On

Add keybinding under the preferences as follows:

[
// for uppercase:
  { "keys": ["ctrl+u"], "command": "upper_case" },

// for lowercase:
  { "keys": ["ctrl+l"], "command": "lower_case" },

// for titlecase:
  { "keys": ["ctrl+t"], "command": "title_case" },
]