motiejus/dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.jakstys.lt/motiejus/dotfiles.git
Log | Tree | Refs | README | LICENSE

commit 652c27a46bb3d20a0909bde7f690a37a7515f3bf (tree)
parent 336c716ba04895e74ee7140a256098037b97671b
Author: Tim Pope <code@tpope.net>
Date:   Sat, 21 Jun 2014 11:14:51 -0400

Use 'shellslash' to detect Windows shell

Diffstat:
Mplugin/fugitive.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim @@ -27,7 +27,7 @@ function! s:gsub(str,pat,rep) abort endfunction function! s:winshell() abort - return &shell =~# 'cmd' || &shell =~# 'power' + return exists('+shellslash') && !&shellslash endfunction function! s:shellesc(arg) abort