Skip to content

Commit

Permalink
Fix for F# Interactive window
Browse files Browse the repository at this point in the history
  • Loading branch information
nosami committed Jul 11, 2019
1 parent 44ab63c commit 7f09702
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion XSVim/Addin.fs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ type XSVim() as this =


override x.IsValidInContext documentContext =
documentContext.Name <> "__FSI__.fs" || documentContext.Name <> "__FSI__.fsx"
documentContext.Name <> "__FSI__.fs" && documentContext.Name <> "__FSI__.fsx"

override x.Initialize() =
treeViewPads.initialize()
Expand Down
4 changes: 2 additions & 2 deletions XSVim/Properties/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ open System.Runtime.CompilerServices
[<AutoOpen>]
module AddinVersion =
[<Literal>]
let version = "0.65.9.81"
let version = "0.65.10.81"

[<assembly: AssemblyTitle("XSVim")>]
// The assembly version has the format {Major}.{Minor}.{Build}.{VSMacVersion}


[<assembly: AssemblyVersion(version)>]

Expand Down

0 comments on commit 7f09702

Please sign in to comment.