From 0adba285fa16dbb04100f0c51fcff7f7d860c879 Mon Sep 17 00:00:00 2001 From: azerr Date: Wed, 17 Jul 2019 07:38:38 +0200 Subject: [PATCH] .ent and .mod files should be parsed as DTDs See https://github.com/angelozerr/lsp4xml/issues/#380 Signed-off-by: azerr --- package.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a63ae824..248a2540 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,8 @@ "keywords": [ "xml", "xsl", - "xsd" + "xsd", + "dtd" ], "engines": { "vscode": "^1.27.0" @@ -263,6 +264,15 @@ "[xml]": { "editor.autoClosingBrackets": "never" } - } + }, + "languages": [ + { + "id": "xml", + "extensions": [ + ".ent", + ".mod" + ] + } + ] } }