Skip to content

Commit

Permalink
make c alias really work like cat
Browse files Browse the repository at this point in the history
  • Loading branch information
xero committed Oct 31, 2015
1 parent ea6aaca commit c9794fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion zsh/.zsh/aliases.zsh
Expand Up @@ -84,7 +84,10 @@ email() {
echo $3 | mutt -s $2 $1
}
c() {
pygmentize -O style=sourcerer -f console256 -g $1
for file in "$@"
do
pygmentize -O style=sourcerer -f console256 -g "$file"
done
}
l() {
pygmentize -O style=sourcerer -f console256 -g $1 | less -r
Expand Down

0 comments on commit c9794fe

Please sign in to comment.