markmv - v1.39.2
    Preparing search index...

    Interface MoveOperationOptions

    Configuration options specific to move operations.

    Extends base operation options with move-specific settings such as directory creation behavior.

    interface MoveOperationOptions {
        dryRun?: boolean;
        verbose?: boolean;
        force?: boolean;
        createDirectories?: boolean;
        obsidian?: boolean;
        discoverySeeds?: string[];
    }

    Hierarchy (View Summary)

    Index
    dryRun?: boolean

    Show what would be changed without making changes

    verbose?: boolean

    Show detailed output

    force?: boolean

    Force operation even if conflicts exist

    createDirectories?: boolean

    Create missing directories

    obsidian?: boolean

    Treat wikilinks as Obsidian vault links: resolve by note basename and rewrite on rename

    discoverySeeds?: string[]

    Extra paths anchoring bystander discovery wider than the move span (an in-place rename spans one directory, which would miss bystanders above it)