diff --git a/README.md b/README.md
index 62530485..bf98c533 100644
--- a/README.md
+++ b/README.md
@@ -44,7 +44,7 @@ I would like to thank all the sponsors of this project who make it possible for
If you'd like to sponsor this project, please visit https://github.com/sponsors/junegunn.
-





















































+





















































Table of Contents
-----------------
diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index 03969108..0a8d570f 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -330,7 +330,7 @@ function! s:common_sink(action, lines) abort
if has('win32unix') && item !~ '/'
let item = substitute(item, '\', '/', 'g')
end
- if item[0] != '~' && item !~ (s:is_win ? '^[A-Z]:\' : '^/')
+ if item[0] != '~' && item !~ (s:is_win ? '^\([A-Z]:\)\?\' : '^/')
let sep = s:is_win ? '\' : '/'
let item = join([cwd, item], cwd[len(cwd)-1] == sep ? '' : sep)
endif