广告

本站里的文章大部分经过自行整理与测试

2016年4月9日星期六

取代 CommandPrompt + PowerShell

cmder
http://cmder.net/

可以拿来取代 Windows 的 command prompt 和 power shell,
免安装, 而且也只有不到 11MB (mini 版)

第一次用的时候, 在里面打开 PowerShell as Admin,
输入 Get-ExecutionPolicy -List
会看到 CurrentUser 的 ExecutionPolicy 是 Undefined

设为 RemoteSigned, 以让 cmder 能用 Power Shell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

另外, 
可以cmd.exe (vendor\init.bat) 的输入标示符, 即 {lamb} 改为 $$

@prompt $E[1;32;40m$P$S{git}{hg}$S$_$E[1;30;40m{lamb}$S$E[0m
改为
@prompt $E[1;32;40m$P$S{git}{hg}$S$_$E[1;30;40m$$$S$E[0m

在 Power Shell (vendor/profile.ps1) 也可以将输入标示符, λ 改为 $ 

Write-Host "`nλ" -NoNewLine -ForegroundColor "DarkGray"
改为 
Write-Host "`n$" -NoNewLine -ForegroundColor "DarkGray" 

如不想看到以下信息
Missing git support, install posh-git with 'Install-Module posh-git' and restart cmder.
找到以上这行, 前面加个 # 即可
# Write-Warning "Missing git support..

没有评论:

发表评论