Skip to content

Commit 732f76a

Browse files
committed
Update the menu item to "Go To Character" (#26)
Remove the shortcut: Ctrl+Shift+L (#27)
1 parent 7f766ab commit 732f76a

File tree

4 files changed

+28
-32
lines changed

4 files changed

+28
-32
lines changed

EasyMotion/EasyMotion.vsct

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,9 @@
77
<Commands package="guidEasyMotionPkg">
88

99
<Groups>
10-
<!-- Add the command to the Edit->GoTo menu -->
10+
<!-- Add the command to its own Group in the Edit->GoTo Menu -->
1111
<Group guid="guidEasyMotionCmdSet" id="EasyMotionGotoGroup" priority="0x0150">
12-
<!--<Parent guid="guidSHLMainMenu" id="IDG_VS_GOTO"/>-->
13-
<Parent guid="guidSHLMainMenu" id="IDG_VS_EDIT_GOTO"/>
14-
</Group>
15-
<!-- Add the command to the main Edit menu -->
16-
<Group guid="guidEasyMotionCmdSet" id="EasyMotionEditGroup" priority="0x0050">
17-
<Parent guid="guidSHLMainMenu" id="IDM_VS_MENU_EDIT"/>
12+
<Parent guid="guidSHLMainMenu" id="IDM_VS_EDITOR_GOTO_MENU"/>
1813
</Group>
1914
</Groups>
2015

@@ -24,7 +19,7 @@
2419
<CommandFlag>DynamicVisibility</CommandFlag>
2520
<CommandFlag>DefaultInvisible</CommandFlag>
2621
<Strings>
27-
<!-- Set the keyboard accelerator with &amp; before the hotkey -->
22+
<!-- Set the keyboard accelerator with &amp; before the hotkey (Go To Character) -->
2823
<ButtonText>Go To &amp;Character...</ButtonText>
2924
<CanonicalName>.EasyMotion.Navigate</CanonicalName>
3025
<LocCanonicalName>.EasyMotion.Navigate</LocCanonicalName>
@@ -38,9 +33,6 @@
3833
<CommandPlacement guid="guidEasyMotionCmdSet" id="CmdEasyMotionNavigate" priority="0x0100">
3934
<Parent guid="guidEasyMotionCmdSet" id="EasyMotionGotoGroup" />
4035
</CommandPlacement>
41-
<CommandPlacement guid="guidEasyMotionCmdSet" id="CmdEasyMotionNavigate" priority="0x0100">
42-
<Parent guid="guidEasyMotionCmdSet" id="EasyMotionEditGroup" />
43-
</CommandPlacement>
4436
</CommandPlacements>
4537

4638
<VisibilityConstraints>

EasyMotion/EasyMotionPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace EasyMotion
2828
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
2929
// This attribute is used to register the information needed to show this package
3030
// in the Help/About dialog of Visual Studio.
31-
[InstalledProductRegistration("#110", "#112", "2.0.0", IconResourceID = 400)]
31+
[InstalledProductRegistration("#110", "#112", "2.1.0", IconResourceID = 400)]
3232
// This attribute is needed to let the shell know that this package exposes some menus.
3333
[ProvideMenuResource("Menus.ctmenu", 1)]
3434
[Guid(GuidList.guidEasyMotionPkgString)]

EasyMotion/ReleaseNotes.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
10-May-2020 v2.0.0 - Installation target limited to VS2017+
1+
EasyMotion - Visual Studio Extension
2+
12-May-2020 v2.1.0 - Renamed menu item to "Go To Character" and moved to Edit->GoTo menu
3+
10-May-2020 v2.0.0 - Installation target limited to VS2017+
24
05-May-2020 v1.0.3 - Upgraded to install on VS2019
35
30-Mar-2017 v1.0.2 - Upgraded to support VS2017
Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
3-
<Metadata>
4-
<Identity Id="5bb019ad-a18e-4c86-af3c-27217853df95" Version="2.0.0" Language="en-US" Publisher="JaredPar" />
5-
<DisplayName>EasyMotion</DisplayName>
6-
<Description>Easy Motion clone for Visual Studio</Description>
7-
<ReleaseNotes>ReleaseNotes.txt</ReleaseNotes>
8-
</Metadata>
9-
<Installation InstalledByMsi="false">
10-
<InstallationTarget Version="[15.0,)" Id="Microsoft.VisualStudio.Community" />
11-
</Installation>
12-
<Dependencies>
13-
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
14-
</Dependencies>
15-
<Assets>
16-
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
17-
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
18-
</Assets>
19-
<Prerequisites>
20-
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,)" DisplayName="Visual Studio core editor" />
21-
</Prerequisites>
3+
<Metadata>
4+
<Identity Id="5bb019ad-a18e-4c86-af3c-27217853df95" Version="2.1.0" Language="en-US" Publisher="JaredPar" />
5+
<DisplayName>EasyMotion</DisplayName>
6+
<Description xml:space="preserve">Easy Motion clone for Visual Studio</Description>
7+
<MoreInfo>https://marketplace.visualstudio.com/items?itemName=JaredParMSFT.EasyMotion</MoreInfo>
8+
<GettingStartedGuide>https://github.com/jaredpar/EasyMotion</GettingStartedGuide>
9+
<ReleaseNotes>ReleaseNotes.txt</ReleaseNotes>
10+
</Metadata>
11+
<Installation InstalledByMsi="false">
12+
<InstallationTarget Version="[15.0,)" Id="Microsoft.VisualStudio.Community" />
13+
</Installation>
14+
<Dependencies>
15+
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
16+
</Dependencies>
17+
<Assets>
18+
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
19+
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
20+
</Assets>
21+
<Prerequisites>
22+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,)" DisplayName="Visual Studio core editor" />
23+
</Prerequisites>
2224
</PackageManifest>

0 commit comments

Comments
 (0)