Skip to content

Commit

Permalink
Fix :1,10d regex
Browse files Browse the repository at this point in the history
  • Loading branch information
nosami committed May 15, 2018
1 parent d5cde5f commit 41b7c9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion XSVim/ExMode.fs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module exMode =
None

let (|DeleteLines|_|) input =
let matches = Regex.Matches(input, "([\d+]),([\d+])d", RegexOptions.Compiled)
let matches = Regex.Matches(input, "([\d]+),([\d]+)d", RegexOptions.Compiled)
if matches.Count = 1 then
let m = matches.[0]
Some (int m.Groups.[1].Value, int m.Groups.[2].Value)
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.59.0"
let version = "0.59.1"

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

0 comments on commit 41b7c9f

Please sign in to comment.