Datalayer VS Code Extension - v0.0.14
    Preparing search index...

    Service for handling LSP completion requests. Coordinates with LSPDocumentManager and VS Code's LSP infrastructure.

    Index

    Constructors

    Properties

    documentManager: LSPDocumentManager

    Methods

    • Ensure Python extension is active and configured for a document.

      Parameters

      • documentUri: Uri

        Document URI

      Returns Promise<void>

    • Get completions for a cell at a specific position.

      Parameters

      • cellId: string

        Cell identifier

      • position: { character: number; line: number }

        Position in the cell (line and character)

      • Optionaltrigger: string

        Optional trigger character

      Returns Promise<CompletionItem[]>

      Promise that resolves to array of completion items

    • Get hover information for a cell at a specific position.

      Parameters

      • cellId: string

        Cell identifier

      • position: { character: number; line: number }

        Position in the cell (line and character)

      Returns Promise<Hover>

      Promise that resolves to hover information or null

    • Resolve additional details for a completion item.

      Parameters

      • item: CompletionItem

        Completion item to resolve

      Returns Promise<CompletionItem>

      Promise that resolves to resolved completion item