Get-PSReadLineOption
Mendapatkan nilai untuk opsi yang dapat dikonfigurasi.
Sintaks
Get-PSReadLineOption []
Deskripsi
Get-PSReadLineOption
Cmdlet mengembalikan status pengaturan saat ini yang dapat dikonfigurasi menggunakan Set-PSReadLineOption
cmdlet. Anda dapat menggunakan objek yang dikembalikan untuk mengubah opsi PSReadLine . Ini menyediakan cara yang sedikit lebih sederhana untuk mengatur opsi pewarnaan sintaks untuk beberapa jenis token.
Contoh
Contoh 1: Dapatkan opsi dan nilainya
Get-PSReadLineOption
EditMode : Windows
AddToHistoryHandler : System.Func`2[System.String,System.Object]
HistoryNoDuplicates : True
HistorySavePath : C:\Users\user1\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
PredictionSource : HistoryAndPlugin
PredictionViewStyle : InlineView
TerminateOrphanedConsoleApps : False
CommandColor : "`e[93m"
CommentColor : "`e[32m"
ContinuationPromptColor : "`e[37m"
DefaultTokenColor : "`e[37m"
EmphasisColor : "`e[96m"
ErrorColor : "`e[91m"
InlinePredictionColor : "`e[97;2;3m"
KeywordColor : "`e[92m"
ListPredictionColor : "`e[33m"
ListPredictionSelectedColor : "`e[48;5;238m"
ListPredictionTooltipColor : "`e[97;2;3m"
MemberColor : "`e[37m"
NumberColor : "`e[97m"
OperatorColor : "`e[90m"
ParameterColor : "`e[90m"
SelectionColor : "`e[30;47m"
StringColor : "`e[36m"
TypeColor : "`e[37m"
VariableColor : "`e[92m"
Perintah ini mengembalikan daftar opsi PSReadLine yang tersedia dan nilainya saat ini.
Input
None
Anda tidak dapat menyalurkan objek ke cmdlet ini.
Output
Cmdlet ini mengembalikan instans opsi saat ini. Mengubah nilai properti objek ini memperbarui pengaturan di PSReadLine secara langsung tanpa memanggil Set-PSReadLineOption
.