mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-16 22:31:03 +01:00
Compare commits
3 Commits
2ac69955e8
...
537807c863
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
537807c863 | ||
|
|
e3e468d138 | ||
|
|
ff97957f1c |
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ plugins=(... alias-finder)
|
|||||||
|
|
||||||
To enable it for every single command, set zstyle in your `~/.zshrc`.
|
To enable it for every single command, set zstyle in your `~/.zshrc`.
|
||||||
|
|
||||||
|
If the user has installed `rg`([ripgrep](https://github.com/BurntSushi/ripgrep)), it will be used because it's faster. Otherwise, it will use the `grep` command.
|
||||||
|
|
||||||
```zsh
|
```zsh
|
||||||
# ~/.zshrc
|
# ~/.zshrc
|
||||||
|
|
||||||
@@ -28,7 +30,7 @@ When you execute a command alias finder will look at your defined aliases and su
|
|||||||
|
|
||||||
Running the un-aliased `git status` command:
|
Running the un-aliased `git status` command:
|
||||||
```sh
|
```sh
|
||||||
╭─tim@fox ~/repo/gitopolis ‹main›
|
╭─tim@fox ~/repo/gitopolis ‹main›
|
||||||
╰─$ git status
|
╰─$ git status
|
||||||
|
|
||||||
gst='git status' # <=== shorter suggestion from alias-finder
|
gst='git status' # <=== shorter suggestion from alias-finder
|
||||||
@@ -40,7 +42,7 @@ nothing to commit, working tree clean
|
|||||||
|
|
||||||
Running a shorter `git st` alias from `.gitconfig` that it suggested :
|
Running a shorter `git st` alias from `.gitconfig` that it suggested :
|
||||||
```sh
|
```sh
|
||||||
╭─tim@fox ~/repo/gitopolis ‹main›
|
╭─tim@fox ~/repo/gitopolis ‹main›
|
||||||
╰─$ git st
|
╰─$ git st
|
||||||
gs='git st' # <=== shorter suggestion from alias-finder
|
gs='git st' # <=== shorter suggestion from alias-finder
|
||||||
## main...origin/main
|
## main...origin/main
|
||||||
@@ -48,7 +50,7 @@ gs='git st' # <=== shorter suggestion from alias-finder
|
|||||||
|
|
||||||
Running the shortest `gs` shell alias that it found:
|
Running the shortest `gs` shell alias that it found:
|
||||||
```sh
|
```sh
|
||||||
╭─tim@fox ~/repo/gitopolis ‹main›
|
╭─tim@fox ~/repo/gitopolis ‹main›
|
||||||
╰─$ gs
|
╰─$ gs
|
||||||
# <=== no suggestions alias-finder because this is the shortest
|
# <=== no suggestions alias-finder because this is the shortest
|
||||||
## main...origin/main
|
## main...origin/main
|
||||||
|
|||||||
@@ -43,7 +43,11 @@ alias-finder() {
|
|||||||
filter="^'?.{1,$((cmdLen - 1))}'?=" # some aliases is surrounded by single quotes
|
filter="^'?.{1,$((cmdLen - 1))}'?=" # some aliases is surrounded by single quotes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
alias | grep -E "$filter" | grep -E "=$finder"
|
if (( $+commands[rg] )); then
|
||||||
|
alias | rg "$filter" | rg "=$finder"
|
||||||
|
else
|
||||||
|
alias | grep -E "$filter" | grep -E "=$finder"
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ $exact == true ]]; then
|
if [[ $exact == true ]]; then
|
||||||
break # because exact case is only one
|
break # because exact case is only one
|
||||||
|
|||||||
@@ -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]'
|
||||||
|
|||||||
@@ -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'
|
||||||
|
|||||||
@@ -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 .)"'
|
||||||
|
|||||||
@@ -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 |
|
||||||
|
|||||||
@@ -188,7 +188,7 @@ function _tmux_directory_session() {
|
|||||||
alias tds=_tmux_directory_session
|
alias tds=_tmux_directory_session
|
||||||
|
|
||||||
# Autostart if not already in tmux and enabled.
|
# Autostart if not already in tmux and enabled.
|
||||||
if [[ -z "$TMUX" && "$ZSH_TMUX_AUTOSTART" == "true" && -z "$INSIDE_EMACS" && -z "$EMACS" && -z "$VIM" && -z "$INTELLIJ_ENVIRONMENT_READER" ]]; then
|
if [[ -z "$TMUX" && "$ZSH_TMUX_AUTOSTART" == "true" && -z "$INSIDE_EMACS" && -z "$EMACS" && -z "$VIM" && -z "$INTELLIJ_ENVIRONMENT_READER" && -z "$ZED_TERM" ]]; then
|
||||||
# Actually don't autostart if we already did and multiple autostarts are disabled.
|
# Actually don't autostart if we already did and multiple autostarts are disabled.
|
||||||
if [[ "$ZSH_TMUX_AUTOSTART_ONCE" == "false" || "$ZSH_TMUX_AUTOSTARTED" != "true" ]]; then
|
if [[ "$ZSH_TMUX_AUTOSTART_ONCE" == "false" || "$ZSH_TMUX_AUTOSTARTED" != "true" ]]; then
|
||||||
export ZSH_TMUX_AUTOSTARTED=true
|
export ZSH_TMUX_AUTOSTARTED=true
|
||||||
|
|||||||
Reference in New Issue
Block a user