Quickly alter text in Sublime Text.
- replace_text_with: Replace selected text with equivalent number of a specified character(eg: space)
- todoCycle between snake, title, pascal, camel and original
- todoCollapse whites in the order of to (no space if leading spaces, single line, to single space)
From Command palette, type Alter Text: Replace with
No default keybinding is provided. Use like below as necessary
[
    { "keys": ["ctrl+r"], "command": "replace_text_with", "args": { "replacement": " " } },
    { "keys": ["ctrl+-"], "command": "replace_text_with", "args": { "replacement": "-" } }
]
To Install via Package Control.
- Search for package: Alter Text
- Submit to package control channel
- Add multi cursor modifications
- Add FAQ
todo