2024-10-29 20:16:52 +00:00
# FastForwardLink
2024-09-16 18:31:09 +00:00
2026-05-07 20:47:52 +00:00
Obsidian lets you link notes. Great.
2024-09-16 18:31:09 +00:00
2026-05-07 20:47:52 +00:00
But real people don't always use the same terms consistently:
- abbreviations
- acronyms
- nicknames
- alternate spellings
- inside jokes
2024-10-30 20:43:58 +00:00
2026-05-07 20:47:52 +00:00
So you might write:
- `javascript`
- `js`
- `ecmascript`
2024-09-16 18:31:09 +00:00
2026-05-07 20:47:52 +00:00
...while meaning the exact same thing.
2024-09-16 18:31:09 +00:00
2026-05-07 20:47:52 +00:00
By default, Obsidian treats these as separate notes.
2024-09-16 18:31:09 +00:00
2026-05-07 20:47:52 +00:00
Over time, that creates:
- duplicate notes
- fragmented knowledge base
- inconsistent linking
- friction while writing naturally
2024-09-16 18:31:09 +00:00
2026-05-07 20:47:52 +00:00
FastForwardLink solves this by turning alias notes into lightweight redirects.
Write naturally. Land on the right note — fast.
< img src = "fastforwardlink.jpeg" alt = "FastForwardLink mascot" width = "400" >
2024-09-16 18:31:09 +00:00
2026-05-07 20:47:52 +00:00
## FastForwardLink Plugin Demo
2024-09-16 18:31:09 +00:00
2024-10-31 21:49:49 +00:00

2024-09-16 18:31:09 +00:00
2026-05-07 20:47:52 +00:00
FastForwardLink lets multiple note names point to the same canonical note. Write naturally without fragmenting your vault structure:
2025-08-02 22:17:53 +00:00
2026-05-07 20:47:52 +00:00
- `js` → `javascript`
- `ps` → `photoshop`
2025-08-02 22:17:53 +00:00
2026-05-07 20:47:52 +00:00
## How It Works
2025-08-02 22:17:53 +00:00
2026-05-07 20:47:52 +00:00
Suppose you have a note called `javascript` .
Elsewhere in your vault, you naturally write:
```text
[[js]]
```
Normally, Obsidian would create a brand-new js note. But with FastForwardLink:
- Create a note called `js`
- Add redirect syntax inside it
- Opening `js` automatically forwards to `javascript`
Here are some examples of how you might set up FastForwardLink:
- `ps` > `photoshop`
- `js` > `javascript`
- `tay tay` > `taylor swift`
- `e=mc2` > `Einstein's special theory of relativity`
- `favorite film` > `bill and ted's bogus journey`
2025-08-02 22:17:53 +00:00
2024-10-29 20:16:52 +00:00
## Features
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
- **Multiple Links, One Target**: Set multiple links to redirect to a single target note for quick navigation between related topics or abbreviations. Organize synonyms or alternate spellings for easier access.
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
- **Quick-Paste Command**: Set target notes on the fly without breaking your writing flow. In the Obsidian command palette, select **Paste redirect syntax onto selection** to quickly create a forwarding link.
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
- **Organized Vault**: Streamline vault navigation by unifying concepts, perfect for efficient, clutter-free notes.
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
- **Easy Management**: Forwarding notes are automatically moved to a designated folder for easy review, management, or removal.
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
- **Flexible Forwarding Options**:
- Open the target note in the same tab.
- Open the target note in a new tab while remaining on the original note.
- Open the target note in a new tab and switch to it automatically.
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
- **Remove Forwarding Notes in One Click**: Easily delete all redirecting notes with a single click using plugin settings.
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
## Installation
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
Download the plugin directly from Obsidian's community plugins. Just search for FastForwardLink.
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
You can also install manually by doing the following:
2024-10-30 19:38:07 +00:00
2024-11-08 21:27:25 +00:00
1. [Download the following plugin files ](https://github.com/IdanLib/ObsidianFastForwardLinkPlugin ):
- `data.json`
- `main.js`
- `manifest.json`
2026-05-07 20:47:52 +00:00
2. Copy these files to your vault's plugins folder at `{VaultFolder}/.obsidian/plugins/FastForwardLink` .
2024-11-08 21:27:25 +00:00
3. In Obsidian, go to **Settings** > **Community Plugins** and enable **FastForwardLink** .
2024-10-30 19:38:07 +00:00
The plugin is now ready for use.
2026-04-28 22:05:38 +00:00
## Create a Fast-Forward Link
2024-09-16 18:31:09 +00:00
2024-12-04 20:38:35 +00:00
To create a fast-forwarding link:
2024-09-16 18:31:09 +00:00
2024-10-30 19:38:07 +00:00
1. Create or open the note you want to fast-forward to a target note. For example, a note titled `ps` .
2. In the note, type the target note's title wrapped in the forwarding syntax: `::>[[target-note]]` . For example, to forward from `ps` to `photoshop` , include `::>[[photoshop]]` in the `ps` note.
2024-09-16 18:31:09 +00:00
2024-10-30 19:38:07 +00:00
Clicking the `ps` link in any note now opens the `photoshop` note.
2024-09-16 18:31:09 +00:00
2026-04-28 22:05:38 +00:00
## Quick-Paste Syntax
2024-09-16 18:31:09 +00:00
2024-12-04 20:38:35 +00:00
Yup, typing sucks. Fortunately, there's a command to help you quickly paste the redirect syntax into your code:
2024-10-29 20:16:52 +00:00
2026-05-07 20:47:52 +00:00
1. Press `Ctrl + P` to open the Obsidian command palette.
2024-12-04 20:38:35 +00:00
2. Search for and select the command **Paste Redirect Syntax onto Selection** .
The command wraps the selected text in the fast-forward syntax.
> [!TIP] > [Add a hotkey](https://help.obsidian.md/User+interface/Hotkeys#Setting+hotkeys) to trigger this command! We recommend `Ctrl + Alt + R` (PC) or `Cmd + Opt + R` (macOS).
2024-10-29 20:16:52 +00:00
2026-05-07 20:47:52 +00:00
## Version Updates
### Version 1.1
Some improvements include:
- You can now temporarily bypass forwarding with a designated command. In Obsidian's command palette, search for "FastForwardLink".
- Source code refactored and better organized for future contributors.
- Better robust event and error handling and messaging.
2024-10-30 19:38:07 +00:00
## Bugs and Contact
2024-10-29 20:16:52 +00:00
Found a bug? Well, we can't have those!
2024-11-08 21:27:25 +00:00
Please open an issue in the [plugin's GitHub repository ](https://github.com/IdanLib/ObsidianFastForwardLinkPlugin ) or [contact the developer ](mailto:idanlib@gmail.com ) directly.
2024-10-29 20:16:52 +00:00
2024-11-08 08:56:47 +00:00
### Known Bugs
2026-04-28 22:05:38 +00:00
- When "Open the target note in a new tab" is enabled and the fast-forwarding note has not yet been moved to the `_forwards_` folder, some additional tabs are opened. This is likely due to internal timing issues in the Obsidian-OS interaction.
2024-11-08 08:56:47 +00:00
When the fast-forwarding note is in the `_forwards` folder, plugin behavior is as expected.
2024-10-30 19:38:07 +00:00
## Supporting this plugin
2024-10-29 20:16:52 +00:00
2024-10-30 19:38:07 +00:00
If you enjoy using FastForwardLink, consider supporting its development by [buying me a coffee ](https://www.buymeacoffee.com/idanlib ) or a cheesy slice!
2024-10-29 20:16:52 +00:00
2024-11-08 21:27:25 +00:00
< div style = "text-align: center;" >
< a href = "https://www.buymeacoffee.com/idanlib" target = "_blank" > < img src = "https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt = "Buy Me A Coffee" style = "height: 60px !important;width: 217px !important;" > < / a >
< / div >