Pergunta

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 ?

Foi útil?

Solução

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

Outras dicas

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
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top