Get-PSReadLineOption
取得可設定之選項的值。
語法
Get-PSReadLineOption []
Description
Cmdlet 會 Get-PSReadLineOption
傳 Set-PSReadLineOption
回可使用 Cmdlet 設定的目前狀態。 您可以使用傳回的物件來變更 PSReadLine 選項。 這提供一種稍微簡單的方式來設定多種標記的語法著色選項。
範例
範例 1:取得選項及其值
Get-PSReadLineOption
EditMode : Windows
AddToHistoryHandler : System.Func`2[System.String,System.Object]
HistoryNoDuplicates : True
HistorySavePath : C:\Users\username\AppData\Roaming\Microsoft\Windows\
PowerShell\PSReadLine\ConsoleHost_history.txt
HistorySaveStyle : SaveIncrementally
HistorySearchCaseSensitive : False
HistorySearchCursorMovesToEnd : False
MaximumHistoryCount : 4096
ContinuationPrompt : >>
ExtraPromptLineCount : 0
PromptText : {> }
BellStyle : Audible
DingDuration : 50
DingTone : 1221
CommandsToValidateScriptBlockArguments : {ForEach-Object, %, Invoke-Command, icm...}
CommandValidationHandler :
CompletionQueryItems : 100
MaximumKillRingCount : 10
ShowToolTips : True
ViModeIndicator : None
WordDelimiters : ;:,.[]{}()/\|^&*-=+'"---
AnsiEscapeTimeout : 100
CommandColor : "`e[93m"
CommentColor : "`e[32m"
ContinuationPromptColor : "`e[97m"
DefaultTokenColor : "`e[97m"
EmphasisColor : "`e[96m"
ErrorColor : "`e[91m"
KeywordColor : "`e[92m"
MemberColor : "`e[97m"
NumberColor : "`e[97m"
OperatorColor : "`e[90m"
ParameterColor : "`e[90m"
SelectionColor : "`e[30;107m"
StringColor : "`e[36m"
TypeColor : "`e[37m"
VariableColor : "`e[92m"
此命令會傳回可用的 PSReadLine 選項清單及其目前值。
輸入
None
您無法使用管線將物件傳送至此 Cmdlet。
輸出
此 Cmdlet 會傳回目前選項的實例。 變更此物件的屬性值會直接更新 PSReadLine 中的設定,而不叫用 Set-PSReadLineOption
。