language: Remove old unused HTML/ERB language ID (#44081)

The `HTML/ERB` language was renamed
to `HTML+ERB` in https://github.com/zed-industries/zed/pull/40000 We can
remove the old name safely now.

Release Notes:

- N/A
This commit is contained in:
Vitaly Slobodin
2025-12-03 17:34:49 +01:00
committed by GitHub
parent 621ac16e35
commit b168679c18
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -283,7 +283,6 @@ pub fn init(languages: Arc<LanguageRegistry>, fs: Arc<dyn Fs>, node: NodeRuntime
"CSS",
"ERB",
"HTML+ERB",
"HTML/ERB",
"HEEX",
"HTML",
"JavaScript",
-1
View File
@@ -186,7 +186,6 @@ impl LspAdapter for TailwindLspAdapter {
(LanguageName::new("HEEX"), "phoenix-heex".to_string()),
(LanguageName::new("ERB"), "erb".to_string()),
(LanguageName::new("HTML+ERB"), "erb".to_string()),
(LanguageName::new("HTML/ERB"), "erb".to_string()),
(LanguageName::new("PHP"), "php".to_string()),
(LanguageName::new("Vue.js"), "vue".to_string()),
])