Skip to content

Instantly share code, notes, and snippets.

@seandenigris
Created March 4, 2010 20:28
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save seandenigris/322074 to your computer and use it in GitHub Desktop.
Save seandenigris/322074 to your computer and use it in GitHub Desktop.
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
;;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment