fix vim path in powershell profile

This commit is contained in:
Benjamin Staneck 2015-11-12 15:18:21 +01:00
parent 85aaa09d97
commit 87bc4178e6

2
vendor/profile.ps1 vendored
View File

@ -19,7 +19,7 @@ if( -not $env:PSModulePath.Contains($CmderModulePath) ){
try {
Get-command -Name "vim" -ErrorAction Stop >$null
} catch {
$env:Path += ";$env:CMDER_ROOT\vendor\msysgit\share\vim\vim74"
$env:Path += ";$env:CMDER_ROOT\vendor\git-for-windows\usr\share\vim\vim74"
}
try {