├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── package.json └── visualstudio-keyboard.png /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | testing 3 | node_modules 4 | *.sw? 5 | .vscode-test 6 | .DS_Store 7 | *.vsix 8 | *.log 9 | typings 10 | testing -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "name": "Launch Extension", 6 | "type": "extensionHost", 7 | "request": "launch", 8 | "runtimeExecutable": "${execPath}", 9 | "args": [ 10 | "--extensionDevelopmentPath=${workspaceRoot}" 11 | ], 12 | "stopOnEntry": false, 13 | "sourceMaps": true 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Peng Lyu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Visual Studio Keymap for Visual Studio Code 2 | 3 | This extension ports popular Visual Studio keyboard shortcuts to Visual Studio Code. After installing the extension and restarting VS Code your favorite keyboard shortcuts from Visual Studio are now available. 4 | 5 | ## Why don't all the keyboard shortcuts work? 6 | 7 | VS Code does not implement all of the commands available in Visual Studio. If you would like to see a feature in VS Code that is in Visual Studio, please open an [issue on GitHub](https://github.com/Microsoft/vscode/issues/new). 8 | 9 | ## How do I contribute a keyboard shortcut? 10 | 11 | We may have missed a keyboard shortcut. If we did please help us out! It is very easy to make a PR. 12 | 13 | 1. Head over to our [GitHub repository](https://github.com/rebornix/vscode-vs-keybindings). 14 | 2. Open [`package.json`](https://github.com/rebornix/vscode-vs-keybindings/blob/master/package.json). 15 | 3. Add a JSON object to [`contributes.keybindings`](https://github.com/rebornix/vscode-vs-keybindings/blob/master/package.json#L26) as seen below. 16 | 4. Open a pull request. 17 | 18 | ```json 19 | { 20 | "mac": "", 21 | "linux": "", 24 | "command": "