Vim Reading Navigation
approvedby Argus
Forked from Vim Scrolling
Adds vim-style scrolling (j/k, Ctrl+D/U or d/u, gg, G) and Vimium-style link hints (f) in reading mode when vim key bindings are enabled. - This plugin has not been manually reviewed by Obsidian staff.
Vim Reading Navigation
An Obsidian plugin that brings vim-style scrolling and Vimium-style link hints to reading mode when Obsidian's vim key bindings are enabled.
A fork of xlongfeng/obsidian-vim-scrolling that adds plain
d/uhalf-page scrolling, anflink hint mode, and pop-out window support. Published with the original author's approval — see Credits.
Design Idea
Obsidian's built-in vim key bindings (powered by CodeMirror's vim mode) are active in source and live preview modes — but reading mode renders static HTML with no editor, so vim navigation keys (j, k, Ctrl+D, Ctrl+U, gg, G) do nothing there.
This plugin fills that gap: it intercepts those keystrokes in reading mode and scrolls the viewport directly, giving you consistent vim muscle memory regardless of which mode you are in.
It also handles a common friction point: after scrolling in reading mode, switching back to source mode may leave the cursor far from the visible content. The plugin corrects the cursor position so it matches what you were reading.
Key Mappings
| Key | Action |
|---|---|
j | Scroll down one line |
k | Scroll up one line |
Ctrl+D / d | Scroll down half a page |
Ctrl+U / u | Scroll up half a page |
gg | Scroll to the top of the document |
G | Scroll to the bottom of the document |
f | Enter link hint mode — label every visible link |
In link hint mode, type a hint label to focus that link (internal links also show Obsidian's hover preview). With a link focused, press Enter to follow it — internal links open the note, external links open the URL. Press Esc to cancel.
Keys are only active when:
- The current view is in reading mode (preview)
- Obsidian's vim mode is enabled (Settings → Editor → Vim key bindings)
Design Details
No Animation
Scrolling is instant — scrollTop is set directly with no CSS smooth-scroll or animation. This is intentional:
- Key-repeat events (holding
jork) scroll continuously without animation queuing lag. - The behaviour matches source mode vim motions, which are also instantaneous.
Repeated Key Strokes
Holding a key (e.g., j) produces repeated keydown events. Each event is handled independently — no debouncing or rate-limiting is applied — so the viewport scrolls smoothly as long as the key is held.
Link Hint Mode
Pressing f enumerates every link currently visible in the viewport and overlays a short hint label on each — recreating the feel of the Vimium browser extension for Chrome, where you press a key, every link gets a label, and you type the label to jump. Typing a label focuses the link rather than opening it immediately:
- Internal links → the link is highlighted, scrolled into view, and Obsidian's page preview popover is shown (requires the Page Preview core plugin).
- External links → the link is highlighted and scrolled into view.
With a link focused, Enter activates it — internal links navigate via openLinkText, external links open in a new window. Esc clears the focus. Hints are dismissed automatically if you scroll, resize, switch panes, or toggle out of reading mode.
[!NOTE] The hover preview's lifetime is controlled by the Page Preview core plugin, which re-evaluates hover state from the physical mouse pointer. If the pointer is stationary the popover stays open; any mouse movement (or content shifting under the pointer after the focus scroll) makes Page Preview notice the link is not actually hovered and dismiss it. This is core-plugin behavior, not something this plugin controls. If you want pinnable, persistent previews, the Hover Editor plugin works well alongside this one.
gg Detection
The gg command is triggered by pressing g twice within 500 ms. After the first g, the timer starts. If a second g arrives within the window, the view scrolls to the top.
Cursor Adjustment (Reading → Source Mode)
When you switch from reading mode to source mode, the CodeMirror editor restores the cursor to its last known position, which may no longer be visible (because you scrolled in reading mode). The plugin corrects this after the editor initialises:
- Cursor is outside the visible viewport (above or below) → cursor is moved to the first editable line of the current viewport.
- Cursor is within the viewport → cursor is left unchanged.
This ensures the editor opens with the cursor near the content you were reading.
Usage
- Enable vim key bindings in Obsidian: Settings → Editor → Vim key bindings
- Install and enable this plugin.
- Open any note and switch to Reading mode (the book icon in the top-right, or via the command palette).
- Use
j/k,Ctrl+D/Ctrl+U,gg, andGto navigate.
Installation
From the community store (recommended)
Install Vim Reading Navigation from Settings → Community plugins → Browse, or use the "Add to Obsidian" button on the store page.
From source
To build the latest development version yourself:
Prerequisites
- Node.js 18+ and npm
1. Build
git clone https://github.com/DS-argus/vim-reading-nav
cd vim-reading-nav
npm install
npm run build # type-checks, then bundles src/ → main.js
This produces main.js at the repo root. The three files Obsidian needs are main.js, manifest.json, and styles.css.
2. Copy into your vault
Create the plugin folder if it doesn't exist, then copy the three artifacts in.
macOS / Linux:
cp main.js manifest.json styles.css "<Vault>/.obsidian/plugins/vim-reading-nav/"
Windows (PowerShell):
Copy-Item main.js,manifest.json,styles.css "<Vault>\.obsidian\plugins\vim-reading-nav\"
.obsidianis a hidden folder. The plugin folder name must match the pluginid(vim-reading-nav).
3. Enable
Reload Obsidian (Reload app without saving from the command palette), then enable Vim Reading Navigation under Settings → Community plugins.
Live development
npm run dev # watch mode — recompiles main.js on save
Re-copy main.js into the vault and reload Obsidian after each change, or point esbuild's output (esbuild.config.mjs) directly at your vault's plugin folder to skip the copy step.
Credits
A fork of obsidian-vim-scrolling by xlongfeng. The original provides the reading-mode scrolling and cursor-adjustment behaviour; this fork adds:
- Plain
d/ufor half-page scrolling (alongsideCtrl+D/Ctrl+U) - An
fVimium-style link hint mode with hover preview and link activation - Pop-out window support
Published to the community plugin directory with the original author's explicit approval, per Obsidian's fork policy.
Distributed under the same 0BSD license as the original.
For plugin developers
Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.