Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Virtual Autolink

imavinashimavinash365 downloads

Automatically creates virtual links for text within your notes that match the titles or aliases of other notes in your vault. Create a glossary-like functionality, show unlinked mentions and transform them to real links.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates6

[!NOTE] This project was originally forked from Obsidian Virtual Linker by Valentin Schröter, now maintained independently as Virtual Autolink.

Virtual Autolink

This plugin automatically generates virtual links for text within your notes that match with the titles or aliases of other notes in your vault.

Features:

  • create a glossary like functionality
  • works in edit mode and read mode
  • created links are always up to date
  • no manual linking necessary
  • works with aliases of notes
  • links do not appear in graph view & reference counting
  • updates the links automatically while you expand your vault or type new text
  • convert the virtual links to real links in the context menu

Usage demo (literally just typing text ;-): Demo

Usage

By default, the plugin will automatically link all notes of your vault. All occurrences of a note title or alias will be linked in your current note text. If you only want to include notes of a specific folder, you can define this folder in the settings.

[!Note] The auto generated links are post-processed, so they neither change your note text to hard-coded links enclosed in brackets not appear in the graph view or reference counting.

Installing the plugin

Via BRAT (Recommended)

  1. Install the BRAT plugin in Obsidian
  2. In BRAT settings, add avinashkanaujiya/obsidian-virtual-autolink as a beta plugin
  3. Enable "Virtual Autolink" in Community Plugins settings

Manual install

  • Download main.js & manifest.json from Releases
  • Copy them to VaultFolder/.obsidian/plugins/virtual-autolink/
  • Enable the plugin in settings

Settings

Matched files

You can toggle the matching of files between:

  • "Match all files": All files in your vault are matched.
  • "Match only files in a specific folder": Only files in a specific folder are matched. You can specify the folder in the settings. This is useful if you want to only create virtual links to notes in a dedicated glossary directory.

Furthermore, you can explicitly include or exclude specific files from being matched, by adding a tag to the file. You can change the tag in the settings, by default it is:

  • linker-include to explicitly include a file
  • linker-exclude to explicitly exclude a file

You can also exclude all files in a specific folder by adding the folder to the exclude list in the settings.

[!Note] To include / exclude a file or folder, you can use the context menu on virtual links or in the file explorer.

Case sensitivity

You can toggle the case sensitivity of the matching. By default, the matching is case insensitive.

Often there are words with mainly capitalized letters, that should be matched case sensitive. By default, words with 75% or more capitalized letters are matched case sensitive. You can change this threshold in the settings.

You can also explicitly change the case sensitivity of a specific file by adding a tag to the file. You can change the tag in the settings, by default it is:

  • linker-match-case to make the matching case sensitive
  • linker-ignore-case to make the matching case insensitive

If you want to define the case sensitivity for specific aliases, you can define the frontmatter property lists in a note:

  • linker-match-case with a list of names that should be matched only case sensitive
  • linker-ignore-case with a list of names that should be matched case insensitive These property names can be changed in the settings.

Matching mode

Suppress multiple matching and matching to real links

By default, the plugin will suppress several identical virtual link in the same note. Repeated identical matches on the same line are also collapsed to the first occurrence to reduce visual clutter. Furthermore, you can toggle to suppress the creation of virtual links to files, that are linked by real links in the current note.

Part matching

You can toggle the matching mode between:

  • "Matching only whole words": Only whole words are matched. E.g. "book" will not match "Notebook".
  • "Match also beginning of words": The beginning of a word is matched. E.g. "book" will not match "Notebook", but "Note" will match "Notebook".
  • "Matching any part of a word": Any part of a word is matched. E.g. "book" will match "Notebook".

You furthermore have the option to suppress the link suffix for these matches to avoid cluttering your text.

Links to the note itself

By default, links to a note itself are suppressed. This link suppression might be a bit buggy and not work in all cases, e.g. in preview windows. If you like self-links to the note itself, you can toggle this behavior in the settings.

Link suppression in current line

By default, links are created directly as you type. You can disable links for the current line you are typing.

[!Note] Deactivating the link creation for the current line is recommended when using the plugin with IME (input method editor) for languages like Chinese or Japanese, as the plugin might otherwise interfere with the IME.

Styling of the links

Any created virtual link will be appended with this suffix. This is useful to distinguish between real and virtual links. By default, the suffix is "🔗". When a virtual link points to multiple candidate notes, clicking the virtual link itself now opens all matched notes in sequence. The numbered chooser also includes an oa entry first for the same action. Unless "Always show multiple references" is enabled, that chooser stays hidden until you hover the virtual link.

By default (and if the default styling is toggled on in the settings), the links inherit the surrounding text styling and only add a very faint underline-like rule. This intentionally overrides Obsidian's default link color without fighting nearby Markdown styling such as highlights and strikethrough. The multi-candidate chooser still waits for a short hover delay before appearing, which avoids flicker when the pointer only passes over a link. Display-text highlights still use the current theme accent. You can turn off this default styling in the settings.

To apply custom styling to the links, you can add a CSS-snippet at VaultFolder/.obsidian/snippets/virtualLinks.css file.

.virtual-link .virtual-link-a,
.virtual-link .virtual-link-open-all {
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: inset 0 -1px 0 0 color-mix(in srgb, currentColor 10%, transparent);
}

[!Note] If you want to apply custom styling, don't forget to turn off the "Apply default link styling" in the settings.

Commands

The plugin provides the following commands that you can use:

  • Convert All Virtual Links in Selection to Real Links: Converts all virtual links within the selected text to real links.
  • Activate Virtual Linker: Activates Virtual Autolink if it is currently deactivated.
  • Deactivate Virtual Linker: Deactivates Virtual Autolink if it is currently activated.

You can access these commands from the command palette or assign custom hotkeys to them in the settings.

Context Menu Options

When right-clicking on a virtual link, the following options are available in the context menu:

  • Convert to real link: Converts the selected virtual link to a real link.
  • Exclude this file: Adds the linker-exclude tag to the file, preventing it from being matched by Virtual Autolink.
  • Include this file: Adds the linker-include tag to the file, ensuring it is matched by Virtual Autolink.

How to use for development

  • Clone this repo into your-vault/.obsidian/plugins/.
  • yarn to install dependencies
  • yarn dev to start compilation in watch mode.
  • yarn build to compile your main.ts into main.js.

It is recommended to use the Hot Reload Plugin for development.

HealthGood
ReviewCaution
About
Generate virtual links for any text that matches note titles or aliases, updating live in edit and read modes without altering your note files. Keep links hidden from the graph and reference counts, and convert virtual links to real links via the context menu.
LinksAutomation
Details
Current version
3.1.0
Last updated
2 weeks ago
Created
3 months ago
Updates
6 releases
Downloads
365
Compatible with
Obsidian 1.5.0+
Platforms
Desktop, Mobile
License
OTHER
Report bugRequest featureReport plugin
Author
imavinashimavinashavinashkanaujiya
GitHubavinashkanaujiya
  1. Community
  2. Plugins
  3. Links
  4. Virtual Autolink

Related plugins

Advanced URI

Control everything with URI.

Waypoint

Easily generate dynamic MOCs in your folder notes using waypoints. Enables folders to show up in the graph view and removes the need for messy tags!

Auto Link Title

Automatically fetches the titles of links from the web.

Link Embed

Convert URLs in your notes into embeded previews.

Note Linker

Automatically find and create new links between notes.

Excalidraw

Visual PKM powerhouse. Create and edit Excalidraw drawings.

BRAT

Easily install a beta version of a plugin for testing.

Homepage

Open a note, base, or workspace on startup, or set it for quick access later.

Breadcrumbs

Visualise the hierarchy of your vault using a breadcrumb trail or matrix view.

Find orphaned files and broken links

Find files that are not linked anywhere and would otherwise be lost in your vault. In other words: files with no backlinks.