pattulus
3/4/2010 - 8:28 PM

Syntax highlight files in Quicklook

Syntax highlight files in Quicklook

# Snippet to syntax-highlight source code files matching a certain pattern in Quicklook
# See see http://seandenigris.com/?p=412 for more info for more info
# Used with the qlcolorcode plugin
# Insert into QLColorCode.qlgenerator/Contents/Resources/colorize.sh
# Works for files in languages known to highlight (see qlcolorcode docs), but because of their filename, aren't recognized by Quicklook

#The commented lines are already in the file
#

# debug Handling special cases
# case $target in
#    *.graffle )
#        # some omnigraffle files are XML and get passed to us.  Ignore them.
#        exit 1
#        ;;
    *[Rr]akefile | *.rake | *.haml )
        lang=ruby
        ;;