Now working with shellslash

This commit is contained in:
Wilson Y. Wong
2013-08-13 22:16:02 -07:00
parent fa6c08b841
commit e49faaea8f

View File

@@ -106,7 +106,8 @@ function! s:discard_stdout_and_stderr()
endfunction
function! s:command_in_directory_of_file(cmd)
return 'cd ' . s:directory_of_file() . ' && ' . a:cmd
let s:cmd_in_dir = 'cd ' . s:directory_of_file() . ' && ' . a:cmd
return substitute(s:cmd_in_dir, "'", '"', 'g')
endfunction
function! s:is_in_a_git_repo()