Last active
December 27, 2015 13:29
-
-
Save rais38/7333977 to your computer and use it in GitHub Desktop.
By default, Quick Look does not allow copy/paste when previewing a document. Here’s a quick fix. From a terminal enter the following:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ defaults write com.apple.finder QLEnableTextSelection -boolean true; | |
$ killall Finder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can work. HOWEVER: Users report this doesn't work on El Capitan, and sometimes breaks quicklook, requiring
defaults write com.apple.finder QLEnableTextSelection -bool FALSE
ordefaults delete com.apple.finder QLEnableTextSelection
to fix it. YMMV...