zsh: Make 'nocomment' alias filter comments with prefixed whitespaces

This commit is contained in:
histalek 2021-07-25 21:29:40 +02:00
parent 65c1ef4616
commit 4638e90a7d
No known key found for this signature in database
GPG key ID: ED1D6449704FDE03

View file

@ -19,7 +19,7 @@ alias l.='exa --all --list-dirs --long --color=always --group-directories-first
## 'grep' to 'rg' -> 'ripgrep'
alias grep='rg'
alias nocomment="rg --invert-match '''^(#|$)'''"
alias nocomment="rg --invert-match '''^\s*(#|$)'''"
## 'cat' to 'bat'
alias cat='bat'