├── .gitignore ├── HotKeys.sln ├── HotKeysVSIX ├── Ctrl-Jump Camel Hump Words.vssettings ├── Ctrl-Jump Full Words.vssettings ├── EmbeddedVSIX │ └── KeyboardShortcutsManager-v3.2.0.vsix ├── HotKeysVSIX.csproj ├── IntelliJ IDEA.vssettings ├── Properties │ └── AssemblyInfo.cs ├── ReSharper (IDEA style).vssettings ├── ReSharper (VS style).vssettings ├── ReleaseNotes.txt ├── Resources │ ├── HotKeysIcon.png │ ├── HotKeysPreviewImage.png │ └── Market_HotKeys_128x.png └── source.extension.vsixmanifest ├── KeyboardSchemes ├── Installer │ ├── Build2015MSI.bat │ ├── Build2017MSI.bat │ ├── HotKeys2015.msi │ ├── HotKeys2015.wxs │ ├── HotKeys2017.msi │ ├── HotKeys2017.wxs │ ├── HotKeysIcon-128x128.png │ ├── HotKeysIcon.png │ ├── HotKeysPreviewImage.png │ ├── License.rtf │ ├── ReleaseNotes.txt │ ├── Resources │ │ ├── Gallery Description.txt │ │ └── HotKeysMappingSchemes.png │ ├── extension.vsixmanifest │ └── extensions.configurationchanged ├── KeyboardSchemes.csproj ├── KeyboardSchemes.csproj.user ├── KeymapRefs │ ├── IntelliJIDEA_ReferenceCard.pdf │ ├── ReSharperCppDefaultKeymap_VSscheme.pdf │ ├── ReSharper_DefaultKeymap_IDEAscheme.pdf │ ├── ReSharper_DefaultKeymap_VSscheme.pdf │ ├── VSCode-keyboard-shortcuts-linux.pdf │ └── VSCode-keyboard-shortcuts-windows.pdf ├── VSKs │ ├── 2015 │ │ ├── IntelliJ for C#.vsk │ │ ├── IntelliJ-ImportLog.txt │ │ ├── ReSharper for IDEA.vsk │ │ ├── ReSharper for VS C#.vsk │ │ ├── ReSharperForIDEA-ImportLog.txt │ │ ├── ReSharperForVSC#-ImportLogs.txt │ │ └── Visual C# 2015.vsk │ └── 2017 │ │ ├── IntelliJ for C#.vsk │ │ ├── ReSharper for IDEA.vsk │ │ ├── ReSharper for VS C#.vsk │ │ ├── Sublime with C#.vsk │ │ ├── Sublime with C++.vsk │ │ └── Visual C# 2015.vsk └── VSSettings │ ├── Brief.vssettings │ ├── Emacs.vssettings │ ├── IntelliJ.vssettings │ ├── ReSharper for IDEA.vssettings │ ├── ReSharper for VS C#.vssettings │ ├── ReSharperFor2015.vssettings │ ├── Sublime with C#.vssettings │ ├── Sublime with C++.vssettings │ ├── Visual Basic 6.vssettings │ ├── Visual C++ 2.vssettings │ ├── Visual C++ 6.vssettings │ ├── Visual CSharp 2005.vssettings │ ├── Visual CSharp 2015.vssettings │ └── Visual Studio 6.vssettings ├── README.md └── SlashComments ├── BuildSlashCommentsMSI.bat ├── License.rtf ├── Slash Comments.vsk ├── SlashComment.vssettings ├── SlashCommentKeyBindings.wxs └── SlashComments.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/.gitignore -------------------------------------------------------------------------------- /HotKeys.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeys.sln -------------------------------------------------------------------------------- /HotKeysVSIX/Ctrl-Jump Camel Hump Words.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/Ctrl-Jump Camel Hump Words.vssettings -------------------------------------------------------------------------------- /HotKeysVSIX/Ctrl-Jump Full Words.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/Ctrl-Jump Full Words.vssettings -------------------------------------------------------------------------------- /HotKeysVSIX/EmbeddedVSIX/KeyboardShortcutsManager-v3.2.0.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/EmbeddedVSIX/KeyboardShortcutsManager-v3.2.0.vsix -------------------------------------------------------------------------------- /HotKeysVSIX/HotKeysVSIX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/HotKeysVSIX.csproj -------------------------------------------------------------------------------- /HotKeysVSIX/IntelliJ IDEA.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/IntelliJ IDEA.vssettings -------------------------------------------------------------------------------- /HotKeysVSIX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HotKeysVSIX/ReSharper (IDEA style).vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/ReSharper (IDEA style).vssettings -------------------------------------------------------------------------------- /HotKeysVSIX/ReSharper (VS style).vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/ReSharper (VS style).vssettings -------------------------------------------------------------------------------- /HotKeysVSIX/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/ReleaseNotes.txt -------------------------------------------------------------------------------- /HotKeysVSIX/Resources/HotKeysIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/Resources/HotKeysIcon.png -------------------------------------------------------------------------------- /HotKeysVSIX/Resources/HotKeysPreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/Resources/HotKeysPreviewImage.png -------------------------------------------------------------------------------- /HotKeysVSIX/Resources/Market_HotKeys_128x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/Resources/Market_HotKeys_128x.png -------------------------------------------------------------------------------- /HotKeysVSIX/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/HotKeysVSIX/source.extension.vsixmanifest -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/Build2015MSI.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/Build2015MSI.bat -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/Build2017MSI.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/Build2017MSI.bat -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/HotKeys2015.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/HotKeys2015.msi -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/HotKeys2015.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/HotKeys2015.wxs -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/HotKeys2017.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/HotKeys2017.msi -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/HotKeys2017.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/HotKeys2017.wxs -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/HotKeysIcon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/HotKeysIcon-128x128.png -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/HotKeysIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/HotKeysIcon.png -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/HotKeysPreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/HotKeysPreviewImage.png -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/License.rtf -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/ReleaseNotes.txt -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/Resources/Gallery Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/Resources/Gallery Description.txt -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/Resources/HotKeysMappingSchemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/Resources/HotKeysMappingSchemes.png -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/Installer/extension.vsixmanifest -------------------------------------------------------------------------------- /KeyboardSchemes/Installer/extensions.configurationchanged: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KeyboardSchemes/KeyboardSchemes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/KeyboardSchemes.csproj -------------------------------------------------------------------------------- /KeyboardSchemes/KeyboardSchemes.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/KeyboardSchemes.csproj.user -------------------------------------------------------------------------------- /KeyboardSchemes/KeymapRefs/IntelliJIDEA_ReferenceCard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/KeymapRefs/IntelliJIDEA_ReferenceCard.pdf -------------------------------------------------------------------------------- /KeyboardSchemes/KeymapRefs/ReSharperCppDefaultKeymap_VSscheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/KeymapRefs/ReSharperCppDefaultKeymap_VSscheme.pdf -------------------------------------------------------------------------------- /KeyboardSchemes/KeymapRefs/ReSharper_DefaultKeymap_IDEAscheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/KeymapRefs/ReSharper_DefaultKeymap_IDEAscheme.pdf -------------------------------------------------------------------------------- /KeyboardSchemes/KeymapRefs/ReSharper_DefaultKeymap_VSscheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/KeymapRefs/ReSharper_DefaultKeymap_VSscheme.pdf -------------------------------------------------------------------------------- /KeyboardSchemes/KeymapRefs/VSCode-keyboard-shortcuts-linux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/KeymapRefs/VSCode-keyboard-shortcuts-linux.pdf -------------------------------------------------------------------------------- /KeyboardSchemes/KeymapRefs/VSCode-keyboard-shortcuts-windows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/KeymapRefs/VSCode-keyboard-shortcuts-windows.pdf -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2015/IntelliJ for C#.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2015/IntelliJ for C#.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2015/IntelliJ-ImportLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2015/IntelliJ-ImportLog.txt -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2015/ReSharper for IDEA.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2015/ReSharper for IDEA.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2015/ReSharper for VS C#.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2015/ReSharper for VS C#.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2015/ReSharperForIDEA-ImportLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2015/ReSharperForIDEA-ImportLog.txt -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2015/ReSharperForVSC#-ImportLogs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2015/ReSharperForVSC#-ImportLogs.txt -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2015/Visual C# 2015.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2015/Visual C# 2015.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2017/IntelliJ for C#.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2017/IntelliJ for C#.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2017/ReSharper for IDEA.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2017/ReSharper for IDEA.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2017/ReSharper for VS C#.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2017/ReSharper for VS C#.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2017/Sublime with C#.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2017/Sublime with C#.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2017/Sublime with C++.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2017/Sublime with C++.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSKs/2017/Visual C# 2015.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSKs/2017/Visual C# 2015.vsk -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Brief.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Brief.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Emacs.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Emacs.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/IntelliJ.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/IntelliJ.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/ReSharper for IDEA.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/ReSharper for IDEA.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/ReSharper for VS C#.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/ReSharper for VS C#.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/ReSharperFor2015.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/ReSharperFor2015.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Sublime with C#.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Sublime with C#.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Sublime with C++.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Sublime with C++.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Visual Basic 6.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Visual Basic 6.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Visual C++ 2.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Visual C++ 2.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Visual C++ 6.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Visual C++ 6.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Visual CSharp 2005.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Visual CSharp 2005.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Visual CSharp 2015.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Visual CSharp 2015.vssettings -------------------------------------------------------------------------------- /KeyboardSchemes/VSSettings/Visual Studio 6.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/KeyboardSchemes/VSSettings/Visual Studio 6.vssettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/README.md -------------------------------------------------------------------------------- /SlashComments/BuildSlashCommentsMSI.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/SlashComments/BuildSlashCommentsMSI.bat -------------------------------------------------------------------------------- /SlashComments/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/SlashComments/License.rtf -------------------------------------------------------------------------------- /SlashComments/Slash Comments.vsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/SlashComments/Slash Comments.vsk -------------------------------------------------------------------------------- /SlashComments/SlashComment.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/SlashComments/SlashComment.vssettings -------------------------------------------------------------------------------- /SlashComments/SlashCommentKeyBindings.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/SlashComments/SlashCommentKeyBindings.wxs -------------------------------------------------------------------------------- /SlashComments/SlashComments.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justcla/KeyBindings/HEAD/SlashComments/SlashComments.csproj --------------------------------------------------------------------------------