Interface IEditorLightbulbOptions

Configuration options for editor lightbulb

interface IEditorLightbulbOptions {
    enabled?: ShowLightbulbIconMode;
}

Properties

Properties

Enable the lightbulb code action. The three possible values are off, on and onCode and the default is onCode. off disables the code action menu. on shows the code action menu on code and on empty lines. onCode shows the code action menu on code only.