jsmorabito424 downloadsDefine note types with creation commands, filtered file pickers, hover previews, styled wikilinks, and a sidebar widget.
Define custom note types in your vault. Each type gets creation commands, filtered file pickers, hover previews, styled wikilinks, and a sidebar widget — all driven by frontmatter.
Note types
Define named types (e.g. Project, Person, Book) with a template, a save folder, and custom frontmatter fields. Each type registers two commands in the palette:
<Type> — opens a modal pre-filled with the type's fields, creates the file from the template, and inserts a [[wikilink]] if triggered from the editor.<Type> — opens a fuzzy picker scoped to files that match the type's frontmatter filters.Note from selection
Select text in the editor, right-click (or use the editor menu), and choose Note from selection to create a typed note whose title is pre-filled with the selection. The selection is replaced with the new [[wikilink]].
If the selection is a bare URL and the note type has a Field for highlighted URL set (in its Creation fields section), the URL is written into that frontmatter field instead of becoming the title. With the optional Fetch page title from URL setting enabled, the plugin then makes one network request to the linked page and pre-fills the title with its og:title / <title>. That setting is off by default; when off, no network requests are made.
Inline trigger
Set a single trigger character (e.g. @) in settings. Typing it in the editor opens a quick picker for any note type that has Show in trigger menu enabled.
Styled wikilinks
Enable Style note links on a note type to apply a CSS class (ffc-note-link) to every [[wikilink]] pointing at a file of that type — in both the editor and reading view. The underline is dropped and a pill background is applied. Set an optional Link color to tint those links: the text takes the color and the pill background becomes a translucent wash of it. Leave the color unset to follow the theme's tag colors, or pair with a CSS snippet for finer control.
Hover preview card
Enable Preview fields on a type and hovering a styled wikilink shows a popup card with those frontmatter values (and an optional image).
Relations
Right-click a note that belongs to a note type and choose Mark as… → <relation> → <note type> to pick another note and link the two. The link is written into both notes' frontmatter — under the relation's key on the note you marked, and under its reverse key on the target. A generic Related to relation is built in (symmetric, key related_to); define your own (e.g. Blocks / Blocked by) under Settings → Note Types → Relations. Unmark… on the same menu lists a note's existing relations and removes one from both sides.
Filtered file commands
Create arbitrary command-palette commands that open a fuzzy picker showing only files whose frontmatter matches your filters (AND / OR, with equals, not_equals, contains, exists operators). Optionally restrict to specific file extensions (e.g. md, canvas).
Filtered Files Widget
A sidebar panel (left ribbon → Filtered files) with collapsible, drag-reorderable sections. Each section has its own filter rules, sort order, and optional result limit. Supports tag, frontmatter, path, and filename filters.
main.js, manifest.json, and styles.css (if present) into <Vault>/.obsidian/plugins/filtered-file-commands/.Open Settings → Note Types to configure:
@ recommended).npm install
npm run dev # watch mode
npm run build # type-check + production bundle
npm run lint # ESLint
Output artifacts (main.js) are written to the plugin root. See AGENTS.md for conventions.
MIT