Interface LanguageStatus

A language status item is the preferred way to present language status reports for the active text editors, such as selected linter or notifying about a configuration problem.

interface LanguageStatus {
    accessibilityInfo: undefined | AccessibilityInformation;
    busy: boolean;
    command: undefined | Command;
    detail: string;
    id: string;
    label: string;
    name: string;
    selector: LanguageSelector;
    severity: Severity;
    source: string;
}

Properties

accessibilityInfo: undefined | AccessibilityInformation
busy: boolean
command: undefined | Command
detail: string
id: string
label: string
name: string
severity: Severity
source: string