-
Notifications
You must be signed in to change notification settings - Fork 29.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing Sublime Text command - Change case of selection #14096
Comments
As there are extensions to do this (https://github.com/wmaurer/vscode-change-case), I think there's sufficient demand for this feature, and reason to include it for all users. Definitely essential for any text-editor. |
@gandhis1 thank you for your feedback. I opened this issue so I agree with you. I've been trying to come up with specific use cases where this is helpful. Can you help me by adding a couple others? Use Cases:
|
I mostly use it to correct improperly formatted SQL queries (keywords should be capitalized, and names lowercase). |
This feature composes especially well with multi-cursor selections. As a result, it's very useful for "generating" (read: typing by hand) boilerplate code from a list of stuff. E.g. if one has the identifiers I often hop out of Visual Studio into Sublime Text to generate methods or write lists of method calls or something similar using the uppercase/lowercase feature--however the change-case extension mentioned earlier provides way more functionality that all seems useful. |
When pasting multiple things from variables/enums.. then you can multi select the first letters and transform them into capital letters if you want to use them as labels :) |
We try to keep VS Code lean and we think the functionality you're asking for is great for a VS Code extension. Maybe you can already find one that suits you in the VS Code Marketplace. Just in case, in a few simple steps you can get started writing your own extension. See also our issue reporting guidelines. Happy Coding! |
While building this extension to map Sublime Text default keyboard shortcuts to VS Code, I found that this feature is missing.
The feature is changing the case of the selection to upper and lower case.
Default Sublime Text keybindings
Today an extension exists with this functionality. I think this is a good feature to bring into the core of the product.
The text was updated successfully, but these errors were encountered: