mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 09:49:12 +08:00
18fc5e37c7
Explicitly call `import posh-git` because it doesn't have a module manifest thus powershell can't autoload it when using a cmdlet. At present the cmder repo doesn't try to download posh-git so it might be missing from the users session.
42 lines
1.2 KiB
PowerShell
42 lines
1.2 KiB
PowerShell
# Add Cmder modules directory to the autoload path.
|
|
$CmderModulePath = Join-path $PSScriptRoot "psmodules/"
|
|
|
|
if( -not $env:PSModulePath.Contains($CmderModulePath) ){
|
|
$env:PSModulePath = $env:PSModulePath.Insert(0, "$CmderModulePath;")
|
|
}
|
|
|
|
try {
|
|
Get-command -Name "git" -ErrorAction Stop >$null
|
|
Import-Module -Name "posh-git" -ErrorAction Stop >$null
|
|
$gitStatus = $true
|
|
} catch {
|
|
Write-Warning "Missing git support"
|
|
$gitStatus = $false
|
|
}
|
|
|
|
# Set up a Cmder prompt, adding the git prompt parts inside git repos
|
|
function global:prompt {
|
|
$realLASTEXITCODE = $LASTEXITCODE
|
|
$Host.UI.RawUI.ForegroundColor = "White"
|
|
Write-Host $pwd.ProviderPath -NoNewLine -ForegroundColor Green
|
|
Write-VcsStatus
|
|
if($gitStatus){
|
|
}
|
|
$global:LASTEXITCODE = $realLASTEXITCODE
|
|
Write-Host "`nλ" -NoNewLine -ForegroundColor "DarkGray"
|
|
return " "
|
|
}
|
|
|
|
# Load special features come from posh-git
|
|
if ($gitStatus) {
|
|
Enable-GitColors
|
|
Start-SshAgent -Quiet
|
|
}
|
|
|
|
# Move to the wanted location
|
|
if (Test-Path Env:\CMDER_START) {
|
|
Set-Location -Path $Env:CMDER_START
|
|
} elseif ($Env:CMDER_ROOT -and $Env:CMDER_ROOT.StartsWith($pwd)) {
|
|
Set-Location -Path $Env:USERPROFILE
|
|
}
|