diff --git a/XSVim/ExMode.fs b/XSVim/ExMode.fs index 6e80702..a8ba1de 100644 --- a/XSVim/ExMode.fs +++ b/XSVim/ExMode.fs @@ -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) diff --git a/XSVim/Properties/AssemblyInfo.fs b/XSVim/Properties/AssemblyInfo.fs index 2864092..bf8252c 100644 --- a/XSVim/Properties/AssemblyInfo.fs +++ b/XSVim/Properties/AssemblyInfo.fs @@ -5,7 +5,7 @@ open System.Runtime.CompilerServices [] module AddinVersion = [] - let version = "0.59.0" + let version = "0.59.1" [] // The assembly version has the format {Major}.{Minor}.{Build}.{Revision}