Skip to content

Commit

Permalink
Added shortcut files for CamelHump navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
justcla committed Mar 5, 2022
1 parent 0bf03e5 commit 04a24a2
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 1 deletion.
20 changes: 20 additions & 0 deletions HotKeysVSIX/Ctrl-Jump Camel Hump Words.vssettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<UserSettings>
<ApplicationIdentity version="17.0"/>
<Category name="Environment_Group" RegisteredName="Environment_Group">
<Category name="Environment_KeyBindings" Category="{F09035F1-80D2-4312-8EC4-4D354A4BCB4C}" Package="{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}" RegisteredName="Environment_KeyBindings" PackageName="Visual Studio Environment Package">
<Version>17.0.0.0</Version>
<KeyboardShortcuts>
<UserShortcuts>
<Shortcut Command="Edit.NextSubword" Scope="Text Editor">Ctrl+Right Arrow</Shortcut>
<Shortcut Command="Edit.NextSubwordExtend" Scope="Text Editor">Ctrl+Shift+Right Arrow</Shortcut>
<Shortcut Command="Edit.PreviousSubword" Scope="Text Editor">Ctrl+Left Arrow</Shortcut>
<Shortcut Command="Edit.PreviousSubwordExtend" Scope="Text Editor">Ctrl+Shift+Left Arrow</Shortcut>
<Shortcut Command="Edit.SubwordDeleteToStart" Scope="Text Editor">Ctrl+Bkspce</Shortcut>
<Shortcut Command="Edit.SubwordDeleteToEnd" Scope="Text Editor">Ctrl+Del</Shortcut>
<Shortcut Command="Edit.SubwordExpandSelection" Scope="Text Editor">Ctrl+W</Shortcut>
<Shortcut Command="Edit.SubwordContractSelection" Scope="Text Editor">Ctrl+Shift+W</Shortcut>
</UserShortcuts>
</KeyboardShortcuts>
</Category>
</Category>
</UserSettings>
20 changes: 20 additions & 0 deletions HotKeysVSIX/Ctrl-Jump Full Words.vssettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<UserSettings>
<ApplicationIdentity version="17.0"/>
<Category name="Environment_Group" RegisteredName="Environment_Group">
<Category name="Environment_KeyBindings" Category="{F09035F1-80D2-4312-8EC4-4D354A4BCB4C}" Package="{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}" RegisteredName="Environment_KeyBindings" PackageName="Visual Studio Environment Package">
<Version>17.0.0.0</Version>
<KeyboardShortcuts>
<UserShortcuts>
<Shortcut Command="Edit.WordNext" Scope="Text Editor">Ctrl+Right Arrow</Shortcut>
<Shortcut Command="Edit.WordNextExtend" Scope="Text Editor">Ctrl+Shift+Right Arrow</Shortcut>
<Shortcut Command="Edit.WordPrevious" Scope="Text Editor">Ctrl+Left Arrow</Shortcut>
<Shortcut Command="Edit.WordPreviousExtend" Scope="Text Editor">Ctrl+Shift+Left Arrow</Shortcut>
<Shortcut Command="Edit.WordDeleteToStart" Scope="Text Editor">Ctrl+Bkspce</Shortcut>
<Shortcut Command="Edit.WordDeleteToEnd" Scope="Text Editor">Ctrl+Del</Shortcut>
<Shortcut Command="Edit.ExpandSelection" Scope="Text Editor">Ctrl+W</Shortcut>
<Shortcut Command="Edit.ContractSelection" Scope="Text Editor">Ctrl+Shift+W</Shortcut>
</UserShortcuts>
</KeyboardShortcuts>
</Category>
</Category>
</UserSettings>
8 changes: 8 additions & 0 deletions HotKeysVSIX/HotKeysVSIX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Ctrl-Jump Full Words.vssettings">
<SubType>Designer</SubType>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="EmbeddedVSIX\KeyboardShortcutsManager-v3.1.0.vsix">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
Expand All @@ -57,6 +61,10 @@
</None>
</ItemGroup>
<ItemGroup>
<Content Include="Ctrl-Jump Camel Hump Words.vssettings">
<SubType>Designer</SubType>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="ReleaseNotes.txt">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
Expand Down
1 change: 1 addition & 0 deletions HotKeysVSIX/ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Hot Keys - Keyboard Shortcuts
by Justin Clareburt
05-Mar-2022: v4.2.0 Added new settings files for Camel-Hump navigation.
05-Mar-2022: v4.1.0 Added shortcuts for new VS commands - ToggleLineComment and ToggleBlockComment. Uses Keyboard Manager 3.1.0
19-Jan-2022: v4.0.0 Upgraded for VS2022+. Included KeyboardShortcutsManager-v3.0.0
23-Jan-2022: v3.1.0 New version created for VS2017-VS2019 legacy maintenance.
Expand Down
2 changes: 1 addition & 1 deletion HotKeysVSIX/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="HotKeys.e18a1a2b-78e5-4f4c-aade-448d36fd6016" Version="4.1.0" Language="en-US" Publisher="Justin Clareburt" />
<Identity Id="HotKeys.e18a1a2b-78e5-4f4c-aade-448d36fd6016" Version="4.2.0" Language="en-US" Publisher="Justin Clareburt" />
<DisplayName>Hot Keys - Keyboard Shortcuts</DisplayName>
<Description xml:space="preserve">Installs alternative keyboard mapping schemes to work with Visual Studio.</Description>
<MoreInfo>https://aka.ms/hotkeys2017</MoreInfo>
Expand Down

0 comments on commit 04a24a2

Please sign in to comment.