Skip to content

Instantly share code, notes, and snippets.

@jaywick
Created February 1, 2018 06:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jaywick/588ea04e11f74c726a9eed3ccc684bf6 to your computer and use it in GitHub Desktop.
Save jaywick/588ea04e11f74c726a9eed3ccc684bf6 to your computer and use it in GitHub Desktop.
Visual Studio 2015-17 shortcuts to make it similar to VS Code
<UserShortcuts>
<RemoveShortcut Command="Edit.CharTranspose" Scope="Text Editor">Ctrl+T</RemoveShortcut>
<RemoveShortcut Command="Edit.WordTranspose" Scope="Text Editor">Ctrl+Shift+T</RemoveShortcut>
<RemoveShortcut Command="Edit.GoToDeclaration" Scope="Global">Ctrl+F12</RemoveShortcut>
<RemoveShortcut Command="Edit.SelectCurrentWord" Scope="Text Editor">Ctrl+W</RemoveShortcut>
<RemoveShortcut Command="Edit.NextKeyTyped" Scope="VC Accelerator Editor">Ctrl+W</RemoveShortcut>
<RemoveShortcut Command="Edit.CompleteWord" Scope="Text Editor">Alt+Right Arrow</RemoveShortcut>
<RemoveShortcut Command="Edit.ExpandSelection" Scope="Text Editor">Ctrl+W</RemoveShortcut>
<RemoveShortcut Command="Edit.ContractseSelection" Scope="Text Editor">Ctrl+Shift+W</RemoveShortcut>
<RemoveShortcut Command="Edit.GoToReference" Scope="Global">Ctrl+R</RemoveShortcut>
<Shortcut Command="Window.NextTab" Scope="Global">Ctrl+Tab</Shortcut>
<Shortcut Command="Window.PreviousTab" Scope="Global">Ctrl+Shift+Tab</Shortcut>
<Shortcut Command="Edit.GoToImplementation" Scope="Global">Ctrl+B</Shortcut>
<Shortcut Command="File.Close" Scope="Global">Ctrl+W</Shortcut>
<Shortcut Command="File.CloseAllButThis" Scope="Global">Ctrl+Shift+W</Shortcut>
<Shortcut Command="Edit.GoToNextLocation" Scope="Global">Alt+Right Arrow</Shortcut>
<Shortcut Command="Edit.GoToPrevLocation" Scope="Global">Alt+Left Arrow</Shortcut>
<Shortcut Command="Edit.GoToDefinition" Scope="Global">F12</Shortcut>
<Shortcut Command="Edit.ParameterInfo" Scope="Global">Ctrl+P</Shortcut>
<Shortcut Command="Tools.ExternalCommand6" Scope="Global">Ctrl+Shift+C</Shortcut>
<Shortcut Command="Edit.UndoClose" Scope="Global">Ctrl+Shift+T</Shortcut>
<Shortcut Command="Project.NewFolder" Scope="Global">Ctrl+Shift+N</Shortcut>
<Shortcut Command="Project.AddClass" Scope="Global">Ctrl+N</Shortcut>
<Shortcut Command="Edit.GoToReference" Scope="Global">Ctrl+G</Shortcut>
<Shortcut Command="Edit.GoTo" Scope="Global">Alt+G</Shortcut>
</UserShortcuts>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment