diff options
author | Vikas Kushwaha <dev@vikas.rocks> | 2025-05-21 14:30:00 +0530 |
---|---|---|
committer | Vikas Kushwaha <dev@vikas.rocks> | 2025-05-21 14:30:00 +0530 |
commit | 0d397e4d3d204a1e016c0863815f0b5dc516c46b (patch) | |
tree | 5e5db5a8b53555783ca3b5679bc21876e9de0b6c /.config/zsh/command-tools.zsh | |
parent | e55ad8ca4f99fa024106d5695a55f9ac132d7b68 (diff) |
added some new scripts and cleaned up nvim directory
Diffstat (limited to '.config/zsh/command-tools.zsh')
-rw-r--r-- | .config/zsh/command-tools.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/zsh/command-tools.zsh b/.config/zsh/command-tools.zsh index 20126cb..b63b0ac 100644 --- a/.config/zsh/command-tools.zsh +++ b/.config/zsh/command-tools.zsh @@ -1,5 +1,5 @@ whereis_alias() { - location="$(zsh -xic exit 2>&1 | sed -E "/alias[ '$]*$1=/!d" | + location="$(zsh -xic exit 2>&1 | sed -E "/alias[ '$]*$1=/!d; /\/plugins\//d" | fzf --exit-0 --select-1 --ansi --header-first --header='Select alias location' | sed -n "s|^\+\(/.*:[0-9]*\)>.*$|\1|p")" |