From d2af054a59010f9ee5ed485ea2162d7a8d92bfb3 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 28 May 2015 13:04:45 +0200 Subject: [PATCH] Escape '[' on Windows Escape '[' as according to ":h wildcard", so it doesn't get interpreted as a pattern, like "[0-9]". References #161. --- autoload/startify.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 46f6a13..1717b65 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -342,6 +342,9 @@ function! startify#open_buffers() for val in values(s:marked) let [path, type] = val[1:2] let path = fnameescape(path) + if has('win32') + let path = substitute(path, '\[', '\[[]', 'g') + endif if line2byte('$') == -1 " open in current window @@ -387,6 +390,9 @@ function! s:display_by_path(path_prefix, path_format) abort for [absolute_path, entry_path] in oldfiles let index = s:get_index_as_string(s:entry_number) call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . entry_path) + if has('win32') + let absolute_path = substitute(absolute_path, '\[', '\[[]', 'g') + endif execute 'nnoremap ' index ':edit' absolute_path ' call check_user_options()' let s:entry_number += 1 endfor