Skip to content

Commit

Permalink
Fix Ctrl-I & bump to 0.55.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nosami committed May 10, 2018
1 parent d497d43 commit 5978ebe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion XSVim/Addin.fs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
namespace XSVim

open System
open System.Collections.Generic
open MonoDevelop.Components.Commands
open MonoDevelop.Core
open MonoDevelop.Ide
Expand Down Expand Up @@ -171,7 +172,7 @@ type XSVim() as this =
member x.NavigateBackwards() = ctrl "o"

[<CommandHandler ("XSVim.NavigateForwards")>]
member x.NavigateForwards() = ctrl "p"
member x.NavigateForwards() = ctrl "i"

[<CommandHandler ("XSVim.IncrementNumber")>]
member x.IncrementNumber() = ctrl "x"
Expand Down
2 changes: 1 addition & 1 deletion XSVim/Properties/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ open System.Runtime.CompilerServices
[<AutoOpen>]
module AddinVersion =
[<Literal>]
let version = "0.54.7"
let version = "0.55.0"

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

0 comments on commit 5978ebe

Please sign in to comment.