Skip to content

Commit

Permalink
Merge pull request #123 from moeshin/master
Browse files Browse the repository at this point in the history
Fix python in msys2
  • Loading branch information
alanhamlett authored Jan 6, 2022
2 parents b1a6408 + c1c60ca commit 1d87845
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion plugin/wakatime.vim
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,11 @@ let s:VERSION = '9.0.1'
\ 'callback': {channel, output -> s:AsyncInstallHandler(output)}})
elseif s:nvim_async
if s:IsWindows()
let job_cmd = cmd
if &shell =~ 'cmd'
let job_cmd = cmd
else
let job_cmd = [&shell, '-c', s:JoinArgs(cmd)]
endif
else
let job_cmd = [&shell, &shellcmdflag, s:JoinArgs(cmd)]
endif
Expand Down

0 comments on commit 1d87845

Please sign in to comment.