mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-12 15:34:50 +08:00
Compare commits
4 Commits
a1d1120171
...
0ab6bbad1e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ab6bbad1e | ||
|
|
f84341c574 | ||
|
|
92aed2e936 | ||
|
|
4bcd3b5757 |
@ -117,7 +117,7 @@ function _omz_git_prompt_status() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# For each status prefix, do a regex comparison
|
# For each status prefix, do a regex comparison
|
||||||
for status_prefix in ${(k)prefix_constant_map}; do
|
for status_prefix in "${(@k)prefix_constant_map}"; do
|
||||||
local status_constant="${prefix_constant_map[$status_prefix]}"
|
local status_constant="${prefix_constant_map[$status_prefix]}"
|
||||||
local status_regex=$'(^|\n)'"$status_prefix"
|
local status_regex=$'(^|\n)'"$status_prefix"
|
||||||
|
|
||||||
|
|||||||
@ -77,7 +77,15 @@ EOF
|
|||||||
(*.lzma) unlzma "$full_path" ;;
|
(*.lzma) unlzma "$full_path" ;;
|
||||||
(*.z) uncompress "$full_path" ;;
|
(*.z) uncompress "$full_path" ;;
|
||||||
(*.zip|*.war|*.jar|*.ear|*.sublime-package|*.ipa|*.ipsw|*.xpi|*.apk|*.aar|*.whl|*.vsix|*.crx|*.pk3|*.pk4) unzip "$full_path" ;;
|
(*.zip|*.war|*.jar|*.ear|*.sublime-package|*.ipa|*.ipsw|*.xpi|*.apk|*.aar|*.whl|*.vsix|*.crx|*.pk3|*.pk4) unzip "$full_path" ;;
|
||||||
(*.rar) unrar x -ad "$full_path" ;;
|
(*.rar)
|
||||||
|
if (( $+commands[unrar] )); then
|
||||||
|
unrar x -ad "$full_path"
|
||||||
|
elif (( $+commands[unar] )); then
|
||||||
|
unar -o . "$full_path"
|
||||||
|
else
|
||||||
|
echo "extract: cannot extract RAR files: install unrar or unar" >&2
|
||||||
|
success=1
|
||||||
|
fi ;;
|
||||||
(*.rpm)
|
(*.rpm)
|
||||||
rpm2cpio "$full_path" | cpio --quiet -id ;;
|
rpm2cpio "$full_path" | cpio --quiet -id ;;
|
||||||
(*.7z | *.7z.[0-9]* | *.pk7) 7za x "$full_path" ;;
|
(*.7z | *.7z.[0-9]* | *.pk7) 7za x "$full_path" ;;
|
||||||
|
|||||||
@ -341,6 +341,11 @@ setup_zshrc() {
|
|||||||
# Skip this if the user doesn't want to replace an existing .zshrc
|
# Skip this if the user doesn't want to replace an existing .zshrc
|
||||||
if [ "$KEEP_ZSHRC" = yes ]; then
|
if [ "$KEEP_ZSHRC" = yes ]; then
|
||||||
echo "${FMT_YELLOW}Found ${zdot}/.zshrc.${FMT_RESET} ${FMT_GREEN}Keeping...${FMT_RESET}"
|
echo "${FMT_YELLOW}Found ${zdot}/.zshrc.${FMT_RESET} ${FMT_GREEN}Keeping...${FMT_RESET}"
|
||||||
|
# Still create a backup for uninstall safety, but don't overwrite the existing .zshrc
|
||||||
|
if [ ! -e "$OLD_ZSHRC" ]; then
|
||||||
|
echo "${FMT_GREEN}Creating backup at ${OLD_ZSHRC} for safe uninstall${FMT_RESET}"
|
||||||
|
cp "$zdot/.zshrc" "$OLD_ZSHRC"
|
||||||
|
fi
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
@ -35,6 +35,19 @@ if [ -e "$ZSHRC_ORIG" ]; then
|
|||||||
echo "Your original zsh config was restored."
|
echo "Your original zsh config was restored."
|
||||||
else
|
else
|
||||||
echo "No original zsh config found"
|
echo "No original zsh config found"
|
||||||
|
# Check if we have a backup from this uninstall session
|
||||||
|
if [ -e ~/.zshrc.omz-uninstalled-* ]; then
|
||||||
|
echo "However, your .zshrc was backed up during this uninstall."
|
||||||
|
echo "Restoring it automatically..."
|
||||||
|
# Find the most recent backup and restore it
|
||||||
|
LATEST_BACKUP=$(ls -t ~/.zshrc.omz-uninstalled-* 2>/dev/null | head -1)
|
||||||
|
if [ -n "$LATEST_BACKUP" ]; then
|
||||||
|
mv "$LATEST_BACKUP" ~/.zshrc
|
||||||
|
echo "Your .zshrc has been restored from backup."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "No backup found. You may need to recreate your .zshrc configuration."
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Thanks for trying out Oh My Zsh. It's been uninstalled."
|
echo "Thanks for trying out Oh My Zsh. It's been uninstalled."
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user