1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

chore: fix typos (#13219)

This commit is contained in:
jishudashen
2025-07-22 00:39:25 +08:00
committed by GitHub
parent ff97957f1c
commit e3e468d138
5 changed files with 5 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ fi
# disable named-directories autocompletion # disable named-directories autocompletion
zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-directories zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-directories
# Use caching so that commands like apt and dpkg complete are useable # Use caching so that commands like apt and dpkg complete are usable
zstyle ':completion:*' use-cache yes zstyle ':completion:*' use-cache yes
zstyle ':completion:*' cache-path $ZSH_CACHE_DIR zstyle ':completion:*' cache-path $ZSH_CACHE_DIR

View File

@@ -272,7 +272,7 @@ _dnf5-repoquery() {
for v in enhance obsolete provide recommend require suggest supplement; do for v in enhance obsolete provide recommend require suggest supplement; do
opts+=( "--what${v}s=[limit to packages that $v specified capabilities]:list of capability: ") opts+=( "--what${v}s=[limit to packages that $v specified capabilities]:list of capability: ")
done done
# mutually exclusive formating options # mutually exclusive formatting options
opts+=( opts+=(
+ '(format)' + '(format)'
'--conflicts[display capabilities that the package conflicts with]' '--conflicts[display capabilities that the package conflicts with]'

View File

@@ -10,7 +10,7 @@ _dotnet_completion() {
compdef _dotnet_completion dotnet compdef _dotnet_completion dotnet
# Aliases bellow are here for backwards compatibility # Aliases below are here for backwards compatibility
# added by Shaun Tabone (https://github.com/xontab) # added by Shaun Tabone (https://github.com/xontab)
alias dn='dotnet new' alias dn='dotnet new'

View File

@@ -86,7 +86,7 @@ function work_in_progress() {
# Aliases # Aliases
# (sorted alphabetically by command) # (sorted alphabetically by command)
# (order should follow README) # (order should follow README)
# (in some cases force the alisas order to match README, like for example gke and gk) # (in some cases force the alias order to match README, like for example gke and gk)
# #
alias grt='cd "$(git rev-parse --show-toplevel || echo .)"' alias grt='cd "$(git rev-parse --show-toplevel || echo .)"'

View File

@@ -49,4 +49,4 @@ plugins=(... systemadmin)
| geteip | Gather information regarding an external IP address using [icanhazip.com](https://icanhazip.com) | | geteip | Gather information regarding an external IP address using [icanhazip.com](https://icanhazip.com) |
| getip | Determine the local IP Address with `ip addr` or `ifconfig` | | getip | Determine the local IP Address with `ip addr` or `ifconfig` |
| clrz | Clear zombie processes | | clrz | Clear zombie processes |
| conssec | Show number of concurrent connections per second based on ngnix/access.log file or another log file if specified | | conssec | Show number of concurrent connections per second based on nginx/access.log file or another log file if specified |