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

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

    Index

    Constructors

    Methods

    • 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).

        • character: number

          Zero-based character offset in the line.

        • line: number

          Zero-based line number in the cell.

      • 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).

        • character: number

          Zero-based character offset in the line.

        • line: number

          Zero-based line number in the cell.

      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.