From 41b7c9f384bf31806fbbdb48de7a6b7e8e60ea73 Mon Sep 17 00:00:00 2001 From: nosami Date: Tue, 15 May 2018 10:36:42 +0100 Subject: [PATCH] Fix :1,10d regex --- XSVim/ExMode.fs | 2 +- XSVim/Properties/AssemblyInfo.fs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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}