문제

In correspondence with the following post:

How can I Quick Look custom objects with Xcode 5 visual debugger?

I would like to ask if it is possible to have a quick look for native cpp class objects ?

도움이 되었습니까?

해결책

I asked this question on Apple's developer's forum. The answer is as follows:

Custom Quick Look doesn't work for C++, right now

다른 팁

Assuming that I understand this right and you are talking about how to look at source code (.cpp) files using QuickLook, you may want to have a look at the amazing QLStephen plugin (It's really just called QLStephen, but it's amazing).
You can find some instructions here. You can also grab the source, and do your own custom changes.

This gets even more awesome when you add the ability to select and copy text from Quicklook, using the following command in the terminal:

defaults write com.apple.finder QLEnableTextSelection -boolean YES; 
killall Finder
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top