Skip to content

IGotoLocationOptions

原文链接

https://microsoft.github.io/monaco-editor/docs.html#interfaces/editor.IGotoLocationOptions.html

转到位置的配置选项

ts
interface IGotoLocationOptions {
    alternativeDeclarationCommand?: string;
    alternativeDefinitionCommand?: string;
    alternativeImplementationCommand?: string;
    alternativeReferenceCommand?: string;
    alternativeTypeDefinitionCommand?: string;
    multiple?: GoToLocationValues;
    multipleDeclarations?: GoToLocationValues;
    multipleDefinitions?: GoToLocationValues;
    multipleImplementations?: GoToLocationValues;
    multipleReferences?: GoToLocationValues;
    multipleTypeDefinitions?: GoToLocationValues;
}

alternativeDeclarationCommand

  • 类型: string

alternativeDefinitionCommand

  • 类型: string

alternativeImplementationCommand

  • 类型: string

alternativeReferenceCommand

  • 类型: string

alternativeTypeDefinitionCommand

  • 类型: string

multiple

multipleDeclarations

multipleDefinitions

multipleImplementations

multipleReferences

multipleTypeDefinitions