markmv - v1.39.2
    Preparing search index...

    Interface RefactorIndexResult

    Result of an index file refactoring operation.

    interface RefactorIndexResult {
        success: boolean;
        sourcePath: string;
        targetPath?: string;
        linksUpdated: number;
        filesWithUpdatedLinks: string[];
        changes: OperationChange[];
        warnings: string[];
        parseFailures: { file: string; error: string }[];
        errors: string[];
    }
    Index
    success: boolean

    Whether the operation was successful

    sourcePath: string

    Absolute path of the file before the rename

    targetPath?: string

    Absolute path the file is renamed to; absent when no target could be derived from the request

    linksUpdated: number

    Number of inbound links rewritten to the new name

    filesWithUpdatedLinks: string[]

    Distinct files whose links were rewritten

    changes: OperationChange[]

    Detailed link changes recorded by the move machinery

    warnings: string[]

    Warnings reported by the move machinery

    parseFailures: { file: string; error: string }[]

    Files that failed to parse during the operation; their links could not be checked or rewritten

    errors: string[]

    Errors that prevented the operation