Skip to content

1.13.0

Latest

Choose a tag to compare

@github-actions github-actions released this 07 Aug 22:46
· 1 commit to main since this release

Added

  • The view can open in the main area — the most requested change. A new Where to open setting (Behavior group) switches the open command and the ribbon icon between the left sidebar (default) and a full-width tab. An already open view is never moved: drag its tab anywhere and the plugin respects that.
  • Copy, cut and paste for files and folders: Ctrl/Cmd+C/X/V (layout-independent) and Copy / Cut / Paste in the context menus. Paste goes into the current folder — or the right-clicked one — with numeric suffixes on name clashes; folders are pasted with their whole subtree. Cut items are dimmed until pasted and are moved with the usual undo notice. The clipboard is internal to the plugin: Obsidian cannot place real files on the system clipboard portably.
  • Breadcrumb drop targets — dropping files or folders onto a path segment moves them into that folder, the way Finder's path bar works.
  • Folder duplication: Duplicate in the folder context menu, or Ctrl/Cmd+D with a folder selected, copies the folder with its whole subtree as Name copy.
  • Right-clicking the Recents row offers Clear recent files — previously the list could only be cleared from the settings tab.
  • New command Focus column explorer: puts keyboard focus on the columns so arrow-key navigation works without reaching for the mouse. Bindable in Settings → Hotkeys.

Fixed

  • Ctrl/Cmd+A (select all) and Ctrl/Cmd+D (duplicate) did not work on non-Latin keyboard layouts — Cyrillic, Greek, Hebrew and others — because the check looked at the typed character instead of the physical key.
  • A failed clipboard write (for example when the window loses focus mid-action) showed the usual "copied" flow with an empty clipboard. It now reports the failure.
  • Type-ahead could not match names containing spaces: Space always opened Quick Look. While a prefix is being typed, Space now continues the prefix; Quick Look still opens on a plain Space.
  • Migrating pins saved by v1.3.x could assign the same order to two pins when the saved data mixed old boolean and new numeric values (a version rollback and back).

Changed

  • Search in the toolbar is now fuzzy, matching the behaviour of Obsidian's Quick Switcher: typing col ex finds Column Explorer. Every matched fragment of the name is highlighted. The order of items in a column still follows the sort settings — matches are not re-ranked, so keyboard navigation stays predictable.

Internal

  • Test suite extended from pure-logic units to the DOM layer: rendering, keyboard navigation, drag & drop, menus, modals, settings and the mobile layer — 508 tests. Coverage is measured across all of src and enforced by thresholds in CI, alongside a type-check step and a bundle-size guard.