Type alias FindNvimOptions

FindNvimOptions: {
    minVersion?: string;
    orderBy?: "desc" | "none";
}

Type declaration

  • Optional Readonly minVersion?: string

    (Optional) Minimum nvim version (inclusive) to search for.

    • Example: '0.5.0'
  • Optional Readonly orderBy?: "desc" | "none"

    (Optional) Sort order of list of nvim versions.

    • "desc" - (Default) Sort by version in descending order (highest to lowest).
      • Example: ['0.5.0', '0.4.4', '0.4.3']
    • "none" - Order is that of the searched $PATH components.
      • Example: ['0.4.4', '0.5.0', '0.4.3']

Generated using TypeDoc