mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2026-09-18 00:10:08 +00:00
add p10k configure
This commit is contained in:
@@ -14,7 +14,7 @@ function _p9k_can_configure() {
|
||||
setopt err_return extended_glob no_prompt_{bang,subst} prompt_{cr,percent,sp}
|
||||
[[ $1 == '-q' ]] && local -i q=1 || local -i q=0
|
||||
function $0_error() {
|
||||
(( q )) || print -P "%1F[ERROR]%f %Bp9k_configure%b: $1" >&2
|
||||
(( q )) || print -P "%1F[ERROR]%f %Bp10k configure%b: $1" >&2
|
||||
return 1
|
||||
}
|
||||
{
|
||||
|
||||
@@ -4329,6 +4329,16 @@ prompt_powerlevel9k_teardown() {
|
||||
fi
|
||||
}
|
||||
|
||||
function p10k() {
|
||||
emulate -L zsh && setopt no_hist_expand extended_glob
|
||||
if [[ $# == 1 && $1 == configure ]]; then
|
||||
p9k_configure
|
||||
else
|
||||
print -P "Usage: %2Fp10k%f %Bconfigure%b" >&2
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Hook for zplugin.
|
||||
powerlevel10k_plugin_unload() { prompt_powerlevel9k_teardown; }
|
||||
|
||||
|
||||
+3
-3
@@ -138,7 +138,7 @@ function quit() {
|
||||
if (( force )); then
|
||||
print -P "Powerlevel10k configuration wizard has been aborted. To run it again, type:"
|
||||
print -P ""
|
||||
print -P " %2Fp9k_configure%f"
|
||||
print -P " %2Fp10k%f %Bconfigure%b"
|
||||
print -P ""
|
||||
else
|
||||
print -P "Powerlevel10k configuration wizard has been aborted. It will run again"
|
||||
@@ -150,7 +150,7 @@ function quit() {
|
||||
print -P ""
|
||||
print -P "To run Powerlevel10k configuration wizard right now, type:"
|
||||
print -P ""
|
||||
print -P " %2Fp9k_configure%f"
|
||||
print -P " %2Fp10k%f %Bconfigure%b"
|
||||
print -P ""
|
||||
fi
|
||||
exit 1
|
||||
@@ -936,7 +936,7 @@ function write_zshrc() {
|
||||
fi
|
||||
|
||||
local comments=(
|
||||
"# To customize prompt, run \`p9k_configure\` or edit $__p9k_cfg_path_u."
|
||||
"# To customize prompt, run \`p10k configure\` or edit $__p9k_cfg_path_u."
|
||||
)
|
||||
print -lr -- "" $comments "source $__p9k_cfg_path_u" >>$__p9k_zshrc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user