You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I thought this plugin was meant to quicklook all files as text, if they don't have their own plugin already.
I have already found many files for which this doesn't work.
So I ask, what is the purpose of this plugin? Does it truly only support files it has been programmed to support, and not arbitrary "unseen" filetypes?
The text was updated successfully, but these errors were encountered:
if ([components[0] rangeOfString:@"text"].location != NSNotFound)
returnYES;
It seems that it relies on the /usr/bin/file program to return a MIME type that contains text. If file --mime does not return text/... for your file, then qlstephen will not try to render it
For example, for a yadayada.geojson file, running file --mime --brief yadayada.geojson returns application/json; charset=us-ascii. Since text is not part of that, it is not rendered by QLStephen 😞
I thought this plugin was meant to quicklook all files as text, if they don't have their own plugin already.
I have already found many files for which this doesn't work.
So I ask, what is the purpose of this plugin? Does it truly only support files it has been programmed to support, and not arbitrary "unseen" filetypes?
The text was updated successfully, but these errors were encountered: