Anton Klimov

Results 17 comments of Anton Klimov

mdls -name kMDItemContentTypeTree ./babel.config.js kMDItemContentTypeTree = ( "com.netscape.javascript-source", "public.script", "public.source-code", "public.plain-text", "public.text", "public.data", "public.item", "public.content", "public.executable" )

The screenshots are not QuickLook they are what I see with Double Commander 1.1.12. QuickLook is similar:

The problem is not about how the files are rendered. The problem is that there is a plug-in which can render some files, but the newer versions of commander do...

What do you mean by `which plain-text file types Quick Look supports`? Is it necessary for plug-in to function? How did it use to work in 1.1.12 then? If I...

Quick Look does not have to display all text files as simple text. It depends on which extensions are installed. For instance I have "Syntax Highlight.app", "PreviewText.app", "QLMarkdown.app" and I...

@tareqimbasher ``` CREATE TYPE t1 as ENUM ('V1', 'V2'); CREATE TABLE test1 ( id int, enum_column t1 ); INSERT INTO test1 values (1, 'V1'); SELECT * FROM test1; ```