Christopher Wagner163 downloadsShows files modified in the last N days, grouped by day. Marks edits made from filesystem writes with a configurable indicator.
A sidebar panel for Obsidian that shows files modified in the last N days, grouped by calendar day. Marks files edited from outside Obsidian — filesystem writes, sync from another device, plugins that write programmatically — with a configurable indicator dot.

Most Recent Files plugins for Obsidian show recently opened files, not recently modified ones. As I use my vault together with AI tools, I thought it would be useful to see recently modified files and distinguish between edits I've made in Obsidian and those made by the file system. This is useful when using:
Recent Edits closes that gap. It shows what changed, when it changed, and visually flags edits that came from outside Obsidian's editor.
Today / Yesterday / YYYY-MM-DD (Ddd), sorted most recent first.md, .canvas, and .base filescwagner223355/obsidian-recent-editsKnox Timeline is not yet in the Community plugins directory.
| Setting | Type | Default | Description |
|---|---|---|---|
| Lookback days | number | 7 |
How many days back to include. Range 1–90. |
| Hover preview | toggle | off | Show Obsidian's page preview popup on hover. Requires the Page Preview core plugin. |
| External edit indicator color | color | #D97757 |
Color of the dot shown next to externally-edited files. |
| Background folders | folder list | [] |
Hidden by default; revealed by the per-day-header toggle. Useful for files that update often but you only check occasionally. |
| Excluded folders | folder list | [] |
Hidden completely. Dot-prefixed folders (.obsidian, .trash) are always excluded regardless. |
| Click target | Action |
|---|---|
| Filename | Open the file. Activates an existing tab if open; otherwise opens a new one. |
| Cmd/Ctrl-click filename | Always open in a new tab. |
| Folder path | Copy the file's absolute filesystem path to the clipboard. |
| Right-click anywhere on the row | Open in new tab / split / window, Copy path (vault-relative), Reveal in Finder, Rename, Delete, Clear from list. |
| Day header | Collapse or expand the day's group. |
| More / Less pill on a day header | Toggle whether files in your background folders are shown. Only appears if you've configured background folders. |
The classifier combines a few signals:
editor-change events (fires when a file is being edited inside Obsidian's editor).vault.create / vault.modify events (fire for any change, including writes from outside Obsidian).workspace.file-open events (used to recognize core-plugin flows that create-and-open a file, like Daily Notes from the command palette).A file is classified as an external edit only when none of those internal signals fire near the create or modify event.
The external-edit status is meant to be an indicator, not a perfect signal. It could mistake:
If Recent Edits is useful to you, consider buying me a coffee.
MIT — see LICENSE.