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

Vim Reading Navigation

ArgusArgusxlongfengxlongfeng527 downloads

Read and navigate notes without reaching for the mouse. Scroll, jump, select links, and preview linked notes with keyboard controls in Reading mode.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates14

Navigate, search, scroll, preview, open links, and focus on what you read in Obsidian's Reading mode without leaving the keyboard.

[!NOTE] Obsidian's Vim key bindings setting is not required.

A fork of xlongfeng/obsidian-vim-scrolling that adds plain d/u half-page scrolling, / native search, an f link hint mode, persistent link previews, and pop-out window support. Published with the original author's approval — see Credits.

Features

  • Vim-style instant scrolling in Reading mode, including key repeat
  • Link previews with Vimium-style f hints for visible links
  • Heading folds with Vimium-style F hints for visible heading sections
  • Persistent, mouse-independent Markdown previews for internal links and standard or inline footnotes
  • Local external-link destination confirmation before opening in the system browser
  • Cursor correction when switching from Reading mode back to the editor
  • Native in-document search from Reading mode with /
  • Main-window and pop-out-window support
  • Reading focus with z or a native pane-header toggle, adjustable opacity, and configurable context blocks

Key mappings

Key Action
j / k Scroll down / up
d / u Scroll half a page down / up
gg / G Jump to the top / bottom
f Show hints for links and top-level Markdown embeds
F (Shift+F) Show heading-fold hints
/ Open Obsidian's in-note search
z Toggle reading focus

Mappings apply only in Reading mode and leave inputs, editors, and modals alone. Switching back to the editor also adjusts the cursor to the reading position.

Page-scroll bindings

Configure these in Settings → Vim Reading Navigation, not Obsidian Hotkeys.

Action Default
Half page down / up Ctrl+D / Ctrl+U
Full page down / up Unassigned

Editor bindings are unaffected. On Windows and Linux, assigning Ctrl+F overrides in-note search in Reading mode.

In search, use Enter / Shift+Enter for the next / previous result.

Link previews

Press f, then type a hint label to select a link or Markdown embed.

Supported targets include notes, headings, blocks, footnotes, external web links, and top-level Markdown embeds. Embed hints appear beside the native open icon. Links inside embeds and non-Markdown embeds are excluded.

Key after selection Action
Enter Open the target
Shift+J / Shift+K Scroll the preview
j / k Scroll the note
Esc Close the preview or cancel hints

Standard footnotes jump to their definitions; inline footnotes are preview-only. Other non-Markdown file links open normally without a preview.

External links show a URL confirmation before opening. Enable Open external links immediately to skip confirmation.

Split opening

Select a Markdown link or embed, then press a direction key followed by Enter:

Direction Reuse an adjacent pane when possible Always create a new split
Right v → Enter V → Enter
Below h → Enter H → Enter

Reusing a pane adds a new tab rather than replacing its current note. Destinations open in Reading mode and preserve heading/block targets.

Confirm within 3 seconds; otherwise, Enter opens in the current tab. Split opening and its preview guidance are enabled by default and can be disabled in settings.

Heading folds

Press F, then type the label beside a visible heading to fold or unfold its section. The heading stays visible; its section includes nested headings up to the next heading of equal or higher level.

Reading focus

Press z, click the pane-header focus icon, or run Toggle reading focus from the command palette.

The passage near the viewport center stays bright while surrounding text dims. Focus follows the active Reading pane without hiding the workspace.

Configure Settings → Vim Reading Navigation → Reading focus:

Setting Default Range
Surrounding text opacity 50% 10–100%
Context blocks on each side 2 0–5

Lists, tables, code blocks, and embeds are treated as whole blocks, so large blocks may keep much of the screen bright.

Preferences are saved, but focus starts off each time the plugin loads.

Usage

  1. Open a Markdown note in Reading mode.
  2. Use the built-in mappings above, configure page-scroll bindings in Settings → Vim Reading Navigation, or press f to select links.
  3. Press z or click the focus icon in the pane header to enable reading focus. Adjust its opacity and context range under Settings → Vim Reading Navigation → Reading focus.

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\"

.obsidian is a hidden folder. The plugin folder name must match the plugin id (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 / u half-page scrolling
  • Configurable Reading-mode page-scroll bindings
  • An f Vimium-style link hint mode with persistent previews and link activation
  • Pop-out window support
  • / shortcut for Obsidian's native in-document search
  • Footnote previews
  • External destination confirmation

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.

HealthExcellent
ReviewSatisfactory
About
Make Reading mode keyboard-friendly, even if you don't use Vim. Scroll through notes, jump to the top or bottom, and press f to display labels for every visible link. Type a label to open an external link or view an internal note in a persistent, read-only Markdown preview. The default keys are inspired by Vim, but Obsidian's Vim key bindings setting is not required. Use j/k for scrolling, d/u for half-page movement, and gg/G for quick jumps. Follow a previewed link with Enter, close it with Esc, or scroll the preview with Shift+J/Shift+K. Page-scroll shortcuts can be configured in the plugin settings. Key repeat, pop-out windows, and cursor alignment when returning to the editor are supported.
VimNavigationUtilities
Details
Current version
1.9.0
Last updated
Yesterday
Created
3 months ago
Updates
14 releases
Downloads
527
Compatible with
Obsidian 1.8.7+
Platforms
Desktop, Mobile
License
0BSD
Report bugRequest featureReport plugin
Authors
ArgusArgusds-argus
GitHubds-argus
xlongfengxlongfeng
GitHubxlongfeng
  1. Community
  2. Plugins
  3. Vim
  4. Vim Reading Navigation

Related plugins

Creases

Tools for effectively folding Markdown sections.

Quiet Outline

Make outline quiet and more powerful, including no-auto-expand, rendering heading as Markdown, and search support.

Jump to link

Quickly navigate between links, or jump to any word on the page using hotkeys.

Sidebar Keyboard Navigation

Smoothly navigate the native File Explorer using keyboard only (Vim-like).

Notebook Navigator

A better file browser and calendar inspired by Apple Notes, Bear, Evernote and Day One.

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.

Quick Switcher++

Enhanced Quick Switcher, search open panels, and symbols.

Lazy Loader

Load plugins with a delay on startup, so that you can get your app startup down into the sub-second loading time.

Vertical Tabs

Offer an alternative view that displays open tabs vertically, allowing users to group and organize tabs for a better navigation experience.