Skip to content

Commit

Permalink
Merge pull request #67 from microsoft/revert-66-convert-case
Browse files Browse the repository at this point in the history
Revert "Add shortcut to convert to UPPERCASE/lowercase"
  • Loading branch information
chrisdias authored Sep 10, 2020
2 parents c3a8ed5 + 0a2d2c3 commit c54ac0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This extension ports popular Atom keyboard shortcuts to Visual Studio Code. Afte
- Multi cursor editing changed from <kbd>alt</kbd> + click to <kbd>ctrl</kbd> (or <kbd>cmd</kbd>) + click.
- Enable format on paste.

All of these features make VS Code more "Atom like." The changes to your User Settings file (`settings.json`) are as follows.
All of these features make VS Code more "Atom like." The changes to your User Settings file are as followed.

```javascript
// Controls whether the prompt will show
Expand All @@ -29,6 +29,7 @@ This is because VS Code has not implemented those features. Head on over to this
Additionally, you can install an extension for many of these features:

* [FontSize Shortcuts](https://marketplace.visualstudio.com/items?itemName=peterjuras.fontsize-shortcuts)
* [change case](https://marketplace.visualstudio.com/items?itemName=wmaurer.change-case)
* [transpose](https://marketplace.visualstudio.com/items?itemName=v4run.transpose)

## How do I contribute a keyboard shortcut?
Expand Down Expand Up @@ -92,8 +93,6 @@ You can read more about how to contribute keybindings in extensions in the [offi
| `editor.foldLevel5` | `cmd+k cmd+5` | `ctrl+k ctrl+5` | `ctrl+k ctrl+5` |
| `editor.action.selectHighlights` | `ctrl+cmd+g` | `alt+f3` | `alt+f3` |
| `editor.action.insertCursorAtEndOfEachLineSelected` | `cmd+shift+l` | `alt+shift+l` | `alt+shift+l` |
| `editor.action.transformToLowercase` | `cmd+k cmd+l` | `ctrl+k ctrl+l` | `ctrl+k ctrl+l` |
| `editor.action.transformToUppercase` | `cmd+k cmd+u` | `ctrl+k ctrl+u` | `ctrl+k ctrl+u` |
| `expandLineSelection` | `cmd+l` | `ctrl+l` | `ctrl+l` |
| `explorer.newFile` | `a` | `a` | `a` |
| `explorer.newFolder` | `shift+a` | `shift+a` | `shift+a` |
Expand Down
18 changes: 1 addition & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,8 @@
},
{
"mac": "cmd+p",
"linux": "ctrl+p",
"win": "ctrl+p",
"linux": "ctrl+p",
"key": "ctrl+p",
"command": "workbench.action.quickOpenPreviousEditor"
},
Expand All @@ -542,22 +542,6 @@
"key": "ctrl+k",
"command": "workbench.action.terminal.clear",
"when": "terminalFocus"
},
{
"mac": "cmd+k cmd+l",
"linux": "ctrl+k ctrl+l",
"win": "ctrl+k ctrl+l",
"key": "ctrl+k ctrl+l",
"command": "editor.action.transformToLowercase",
"when": "editorFocus"
},
{
"mac": "cmd+k cmd+u",
"linux": "ctrl+k ctrl+u",
"win": "ctrl+k ctrl+u",
"key": "ctrl+k ctrl+u",
"command": "editor.action.transformToUppercase",
"when": "editorFocus"
}
],
"configuration": {
Expand Down

0 comments on commit c54ac0f

Please sign in to comment.