From cd090e2310cd40b29d8da3eff4af0635f2f63b68 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Fri, 5 May 2017 11:53:58 +0200 Subject: [PATCH] Search through html files --- .config/fish/config.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index ec51181..7d4f4fd 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -58,6 +58,7 @@ alias findfile 'find . | grep -v .svn | grep -v .hg | grep -v .git | grep' alias findphp 'find . -name "*.php" | xargs grep --color=auto' alias findjs 'find . -name "*.js" | xargs grep --color=auto' alias findcss 'find . -name "*.css" | xargs grep --color=auto' +alias findhtml 'find . -name "*.html" | xargs grep --color=auto' alias findpy 'find . -name "*.py" | xargs grep --color=auto' alias findyaml 'find . -name "*.yaml" -o -name "*.yml" -o -name "*.eyaml" -o -name "*.eyml" | xargs grep --color=auto' function grepl