From 2625ef828b8f844570c6bed6cfe269d24e3a6982 Mon Sep 17 00:00:00 2001 From: Boris Marinov Date: Tue, 14 Mar 2017 12:18:00 +0200 Subject: [PATCH] Fix file delimiter under Windows --- plugin/flow.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/flow.vim b/plugin/flow.vim index f92ab14..c4e2609 100644 --- a/plugin/flow.vim +++ b/plugin/flow.vim @@ -133,7 +133,7 @@ function! flow#jump_to_def() endif " File: "/path/to/file" => /path/to/file - let file = substitute(substitute(parts[0], '"', '', 'g'), 'File ', '', '') + let file = substitute( substitute(substitute(parts[0], '"', '', 'g'), 'File ', '', ''), '\', '/', 'g') " line 1 => 1 let row = split(parts[1], " ")[1]