Removal of feedback control (fix #188960) (#189027)

This commit is contained in:
Benjamin Pasero
2023-07-28 10:12:52 +02:00
committed by GitHub
parent 55b75c5504
commit cbdfe4e0b4
15 changed files with 18 additions and 878 deletions

View File

@@ -13,8 +13,7 @@ export const enum StatusBarElement {
INDENTATION_STATUS = 4,
ENCODING_STATUS = 5,
EOL_STATUS = 6,
LANGUAGE_STATUS = 7,
FEEDBACK_ICON = 8
LANGUAGE_STATUS = 7
}
export class StatusBar {
@@ -57,8 +56,6 @@ export class StatusBar {
return `.statusbar-item[id="status.editor.eol"]`;
case StatusBarElement.LANGUAGE_STATUS:
return `.statusbar-item[id="status.editor.mode"]`;
case StatusBarElement.FEEDBACK_ICON:
return `.statusbar-item[id="status.feedback"]`;
default:
throw new Error(element);
}