Agent Client Protocol - v0.18.2
    Preparing search index...

    Type Alias NesSearchAndReplaceSuggestion

    A search-and-replace suggestion.

    type NesSearchAndReplaceSuggestion = {
        id: string;
        isRegex?: boolean | null;
        replace: string;
        search: string;
        uri: string;
    }
    Index

    Properties

    id: string

    Unique identifier for accept/reject tracking.

    isRegex?: boolean | null

    Whether search is a regular expression. Defaults to false.

    replace: string

    The replacement text.

    search: string

    The text or pattern to find.

    uri: string

    The file URI to search within.