mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 17:59:11 +08:00
26 lines
408 B
Plaintext
26 lines
408 B
Plaintext
# Use this file to run your own startup commands
|
|
|
|
## Prompt Customization
|
|
<#
|
|
.SYNTAX
|
|
<PrePrompt><CMDER DEFAULT>
|
|
λ <PostPrompt> <repl input>
|
|
.EXAMPLE
|
|
<PrePrompt>N:\Documents\src\cmder [master]
|
|
λ <PostPrompt> |
|
|
#>
|
|
|
|
[ScriptBlock]$PrePrompt = {
|
|
|
|
}
|
|
|
|
# Replace the cmder prompt entirely with this.
|
|
# [ScriptBlock]$CmderPrompt = {}
|
|
|
|
[ScriptBlock]$PostPrompt = {
|
|
|
|
}
|
|
|
|
## <Continue to add your own>
|
|
|