Skip to content

Commit

Permalink
Fix additional errors caused by the last release
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightro committed May 29, 2020
1 parent b29c2c8 commit 7360868
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/VSBlockJumper.csproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<StartAction>Program</StartAction>
<StartProgram>C:\Program Files %28x86%29\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv.exe</StartProgram>
<StartProgram>C:\Program Files %28x86%29\Microsoft Visual Studio\2019\Community\Common7\IDE\devenv.exe</StartProgram>
<StartArguments>/rootsuffix Exp</StartArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
Expand Down
1 change: 1 addition & 0 deletions code/VSBlockJumperPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ protected async override Task InitializeAsync(CancellationToken cancellationToke
// yet initialised - by the time it IS initialised, we also load our options - I think this is the
// safest way (if not cleanest) to ensure we have an options service ready to push our data into
var componentModel = await GetServiceAsync(typeof(SComponentModel)) as IComponentModel;
await JoinableTaskFactory.SwitchToMainThreadAsync();
OptionPageGrid.OptionsService = componentModel.GetService<IEditorOptionsFactoryService>();

// this also sucks - here we force the options to be loaded as they are otherwise NOT loaded even when
Expand Down
2 changes: 1 addition & 1 deletion code/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="VSBlockJumper.Anthony Reddan.6d90d2bf-c317-4e02-97e2-ebdc4d657a76" Version="1.1.3" Language="en-US" Publisher="Anthony Reddan" />
<Identity Id="VSBlockJumper.Anthony Reddan.6d90d2bf-c317-4e02-97e2-ebdc4d657a76" Version="1.1.4" Language="en-US" Publisher="Anthony Reddan" />
<DisplayName>VSBlockJumper</DisplayName>
<Description xml:space="preserve">Enables vertical navigation over blocks of code by allowing you to jump to the next blank line (above or below the cursor) adjacent to a block. This is similar to next/previous blank line in Vim.</Description>
<MoreInfo>https://github.com/Nightro/VSBlockJumper</MoreInfo>
Expand Down

0 comments on commit 7360868

Please sign in to comment.