Visual Studio Code: Difference between revisions

From Omnia
Jump to navigation Jump to search
(Created page with "== Sort Lines == Sort lines - Visual Studio Marketplace https://marketplace.visualstudio.com/items?itemName=Tyriar.sort-lines Shortcut key: F9 == Upper Case == To convert text to all upper case, choose Edit > Advanced > Make Uppercase or press Ctrl+Shift+U. To convert text to all lower case, choose Edit > Advanced > Make Lowercase or press Ctrl+U. Make Uppercase or press Ctrl+Shift+U Make Lowercase or press Ctrl+U == keywords ==")
 
 
Line 7: Line 7:


== Upper Case ==
== Upper Case ==
In Visual Studio it was:


To convert text to all upper case, choose Edit > Advanced > Make Uppercase or press Ctrl+Shift+U. To convert text to all lower case, choose Edit > Advanced > Make Lowercase or press Ctrl+U.
To convert text to all upper case, choose Edit > Advanced > Make Uppercase or press Ctrl+Shift+U. To convert text to all lower case, choose Edit > Advanced > Make Lowercase or press Ctrl+U.
  Make Uppercase or press Ctrl+Shift+U
  Make Uppercase or press Ctrl+Shift+U
  Make Lowercase or press Ctrl+U
  Make Lowercase or press Ctrl+U
So, to mimmic, set the following Keyboard Shortcuts:
* Transform to Uppercase -> editor.action.transformToUppercase -> Ctrl+Shift+U
* Transform to Uppercase -> editor.action.transformToUppercase -> Ctrl+U
They conflict with existing shortcuts, but doesn't appear to cause any problems...


== keywords ==
== keywords ==

Latest revision as of 19:39, 29 July 2024

Sort Lines

Sort lines - Visual Studio Marketplace
https://marketplace.visualstudio.com/items?itemName=Tyriar.sort-lines

Shortcut key: F9

Upper Case

In Visual Studio it was:

To convert text to all upper case, choose Edit > Advanced > Make Uppercase or press Ctrl+Shift+U. To convert text to all lower case, choose Edit > Advanced > Make Lowercase or press Ctrl+U.

Make Uppercase or press Ctrl+Shift+U
Make Lowercase or press Ctrl+U

So, to mimmic, set the following Keyboard Shortcuts:

  • Transform to Uppercase -> editor.action.transformToUppercase -> Ctrl+Shift+U
  • Transform to Uppercase -> editor.action.transformToUppercase -> Ctrl+U

They conflict with existing shortcuts, but doesn't appear to cause any problems...

keywords