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
  • Join the community
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Vim Scrolling

xlongfengxlongfeng1 downloads

Adds vim-style scrolling (j/k, Ctrl+D/U, gg, G) in reading mode when vim key bindings are enabled.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates1

An Obsidian plugin that adds vim-style scrolling in reading mode when Obsidian's vim key bindings are enabled.

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 Scroll down half a page
Ctrl+U Scroll up half a page
gg Scroll to the top of the document
G Scroll to the bottom of the document

Keys are only active when:

  1. The current view is in reading mode (preview)
  2. 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 j or k) 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.

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

  1. Enable vim key bindings in Obsidian: Settings → Editor → Vim key bindings
  2. Install and enable this plugin.
  3. Open any note and switch to Reading mode (the book icon in the top-right, or via the command palette).
  4. Use j/k, Ctrl+D/Ctrl+U, gg, and G to navigate.

Installation

Manual

  1. Download main.js and manifest.json from the latest release.
  2. Copy them to <Vault>/.obsidian/plugins/obsidian-vim-scrolling/.
  3. Reload Obsidian and enable the plugin under Settings → Community plugins.

Development

git clone https://github.com/xlongfeng/obsidian-vim-scrolling
cd obsidian-vim-scrolling
npm install
npm run dev   # watch mode — compiles src/main.ts → main.js
90%
HealthExcellent
ReviewSatisfactory
About
Add vim-style scrolling to reading mode when Obsidian's vim key bindings are enabled. Intercept j, k, Ctrl+D, Ctrl+U, gg and G to scroll instantly (line, half-page, top/bottom) and realign the editor cursor when switching back to source mode.
VimNavigation
Details
Current version
1.0.0
Last updated
Yesterday
Created
2 days ago
Updates
1 release
Downloads
1
Compatible with
Obsidian 0.15.0+
License
0BSD
Report bugRequest featureReport plugin
Author
xlongfengxlongfeng
GitHubxlongfeng
  1. Community
  2. Plugins
  3. Vim
  4. Vim Scrolling

Related plugins

Quiet Outline

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

Creases

Tools for effectively folding Markdown sections.

Notebook Navigator

Replace the default file explorer with a clean two-pane interface featuring folder tree, tag browsing, file previews, keyboard navigation, drag-and-drop, pinned notes, and customizable display options.

Recent Files

Display a list of recently opened files.

TagFolder

Show tags as folder.

Remember cursor position

Remember cursor and scroll position for each note.

Strange New Worlds

Reveal networked thought and the strange new worlds created by your vault.

Vertical Tabs

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

Hover Editor

Transform the Page Preview hover popover into a fully working editor instance.

Natural Language Dates

Create date-links based on natural language.