#7 mentions that:
[javascript] – a valid language selector – doesn't seem to be supported. However, [js] works.
because of Dim uses custom matching logic that wraps the file extension js with [ and ] to filter configuration for language:
|
_getActiveDocumentLanguageSlug(editor: vscode.TextEditor) { |
|
return "[" + editor.document.uri.path.split(".").pop() + "]"; |
|
} |
which doesn't seem as the standard way of filtering language specific rules according
#7 mentions that:
because of Dim uses custom matching logic that wraps the file extension
jswith[and]to filter configuration for language:dim/src/configmanager.ts
Lines 34 to 36 in e53620e
which doesn't seem as the standard way of filtering language specific rules according