vscode-change-case icon indicating copy to clipboard operation
vscode-change-case copied to clipboard

Change Case Extension for Visual Studio Code

Results 41 vscode-change-case issues
Sort by recently updated
recently updated
newest added

I wanted to have my headings in my blog with the correct title case. I assumed this plugin would to this with the case: title. But for example with the...

Thanks for the great extension! Just a quick nit. `first_name_1` converted to camel case should be `firstName1` not `firstName_1`. `firstName_1` is not proper (IMO) camelCase. Likewise, the reverse conversion `firstName1`...

I would not expect changing the case to strip all special characters. Also, there was an odd space inserted before the last character. ### Sample Text TEST: SOMEthing *$% 123...

1.Add the keyboard shortcut mapping. 2. Set a keyboard shortcut to make it can switch every change-case case. such as: press ctrl + c: apply to camel command. press ctrl...

Hey! Thanks for this extension. Please consider adding an additional command to cycle through the most common variable name formats - **const**, **camel** and **snake**. It doesn't have to detect...

The problem was caused by [returning undefined instead of range](https://github.com/wmaurer/vscode-change-case/blob/7e1f0e1/src/change-case-commands.ts#L167) instance when VSCode couldn't pick any word at given position. Change in [text returned in getSelectedText](https://github.com/mlewand/vscode-change-case/blob/0e56d649079afc528ba1c591fd96721b703e84bf/src/change-case-commands.ts#L150) when there is no...

If you execute command like `extension.changeCase.upper` with a collapsed selection, the extension will throw an exception that gets reported as an error: ` Running the contributed command:'extension.changeCase.upper' failed`. Repro steps:...

I installed the change-case extension Added a short cut ``` // Place your key bindings in this file to overwrite the defaults [ { "key": "ctrl+shift+l", "command": "editor.action.copyLinesDownAction", "when": "editorTextFocus"...

trying to use this extension with column selection. If there is a blank line in the column based selection the extension fails. Doesn't matter which case. Joe

If there is no tabulation (the variable starts in 1st column), it all works fine, but if the text is tabulated, none are changed, it should just have an option...