VS Code API
    Preparing search index...

    Interface ConfigurationChangeEvent

    An event describing the change in Configuration

    interface ConfigurationChangeEvent {
        affectsConfiguration(
            section: string,
            scope?: ConfigurationScope,
        ): boolean;
    }
    Index

    Methods

    • Checks if the given section has changed. If scope is provided, checks if the section has changed for resources under the given scope.

      Parameters

      • section: string

        Configuration name, supports dotted names.

      • Optionalscope: ConfigurationScope

        A scope in which to check.

      Returns boolean

      true if the given section has changed.