70

I find Finder's Quick Look feature (launched with Space) very useful, but it works only for a limited number of file extensions. In work I often get .properties, .conf, .ddl and other files which are essentially text, yet in Quick Look their content is never displayed:

alt text

Is there any way I can tell my Mac to treat those files as text?

Thanks!

5 Answers5

48

QLStephen adds support for both files without a filename extension (like README) and files with arbitrary extensions (like file.xyz).


Quick Installation using Homebrew:

brew install qlstephen

Manual Installation:

  • Download plugin
  • Unzip
  • Move file to ~/Library/QuickLook

(Don't forget to star the repo if this plugin helps you.)

Chet
  • 103
Lri
  • 42,502
  • 8
  • 126
  • 159
13

You might also want to have a look at the QLColorCode and QLMarkdown plugins, for syntax highlighting of many languages and markdown rendering respectively.

http://code.google.com/p/qlcolorcode/

http://github.com/toland/qlmarkdown/

_c

polypus74
  • 231
9

A search for quicklook on github reveals that there is a large variety of extensions available:

and some (incomplete) collections:

0 _
  • 323
5

It's possible, but not really easy.

If you look at /System/Library/QuickLook/Text.qlgenerator/Contents/Info.plist, you'll notice that the "text" preview is for the following UTIs:

public.plain-text
public.rtf
com.apple.rtfd
org.oasis-open.opendocument.text
com.apple.property-list
public.xml

This is how QuickLook knows which Plugin (qlgenerator) to use.


A (hackish) solution now would be to assign the extension properties the UTI public.plain-text. To do this, you could create a dummy application (e.g. created by Automator) that declares these file types like described here, only you'd use public.plain-text as UTI and properties as file extension.

Daniel Beck
  • 111,893
3

A solution for 2021...

QLColorCode is an alternative to QLStephen. I have used them both over the years but have had more success with the former. My use case is being able to read my-example.Dockerfile but you should be able to adapt to what you need.

First, let's install QLColorCode:

>brew install qlcolorcode

Now get the metadata name that MacOS uses for your file. To do this we use the mdls command from the Terminal and call it on the path to an example of the filetype you want to configure quicklook for.

>mdls -name kMDItemContentType ~/Documents/my-example.Dockerfile

For me this outputs:

kMDItemContentType = "dyn.ah62d4rv4ge80k55drrw1e3xmrvwu"

Copy the part in quotes as you will need this in a moment. Open the Info.plist for QLColorCode in your favourite text editor. I like vim.

>vim ~/Library/QuickLook/QLColorCode.qlgenerator/Contents/Info.plist

Navigate down to the part that looks like this:

                    <array>
                            <string>public.source-code</string>
                            <string>public.yaml</string>
                            <string>com.apple.xcode.tcsh-script</string>
[...and so on...]
                    </array>

Insert a new element with your copied ContentType code. It should look something like this now:

                    <array>
                            <string>public.source-code</string>
                            <string>public.yaml</string>
                            <string>com.apple.xcode.tcsh-script</string>
[...and so on...]
                            <string>dyn.ah62d4rv4ge80k55drrw1e3xmrvwu</string>
                    </array>

Save your file and relaunch Finder. To restart Finder, click on the Apple icon (top left of screen), select "Force Quit..." and then select Finder. Hit "Relaunch".

Now, when you select a *.Dockerfile in Finder and hit spacebar, you should see the content

Robino
  • 828