npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vim-motions-pi

v0.1.3

Published

A focused Vim-style editing layer for pi, with motions, text objects, visual selections, and clipboard sync

Downloads

568

Readme

vim-motions-pi

npm version

A focused Vim-style editing layer for pi: fast motions, text objects, visual selections, and optional clipboard sync.

It brings the essential Vim editing loop into pi without the full Vim complexity.

At a glance

Edit faster inside pi, with the Vim commands people actually reach for.

  • Move with h j k l, w b e, 0 ^ $, and gg G
  • Change text with dw, ciw, dd, yy, p, u, and r<char>
  • Select with v / V, then yank, delete, or paste
  • Target regions with text objects like iw, aw, ip, and ap
  • Mirror yank/delete/change operations to the system clipboard when enabled

Quick demo

Quick demo of vim-motions-pi

Install

Install with pi:

pi install npm:vim-motions-pi

Or try it for the current run only:

pi -e npm:vim-motions-pi

Local development / test

Run the extension directly from this repo:

pi -e ./extensions/vim-motion.ts

What it supports

Modes

  • insert
  • normal
  • visual
  • visual-line

Core motions

  • Character motions: h j k l
  • Word motions: w b e
  • Line motions: 0 ^ $
  • Buffer motions: gg G
  • Find motions: f F t T
  • Repeat find: ; and ,

Editing actions

  • Operators: d y c
  • Motion-based edits: dw, yw, cw, d$, y^, etc.
  • Linewise forms: dd, yy, cc, D, C, S
  • Direct helpers: x, X, p, P, u, r<char>, o, O, J, i, I, a, A

Selection

  • v enters visual mode
  • V enters visual-line mode
  • Visual selections support y, d, and p

Text objects

  • iw, aw
  • iW, aW
  • i", a"
  • ip, ap
  • Works with operators, for example: diw, yaw, ciW, ci", dap

Counts

  • Prefix counts are supported for motions and many commands
  • Examples: 3w, 2dd, 5x, 4G

Visual mode notes

  • o swaps the visual selection ends.
  • v exits visual mode.
  • V switches to visual-line mode.
  • p / P replace the selection with the current register contents.

Register behavior

  • Yanks, deletes, and changes go to a single unnamed register.
  • p and P paste from that register.
  • Linewise operations keep line breaks when that makes sense.

Optional clipboard sync

Keep the unnamed register in sync with your system clipboard.

Set one parameter:

VIM_MOTION_PI_CLIPBOARD=off|all|yank
  • off: disable clipboard sync
  • all: sync yank, delete, and change operations
  • yank: sync only yank operations

Change it inside pi with:

/vim-clipboard

pi shows a short notification when the mode changes.

When enabled, the extension uses the usual clipboard command on your OS (pbcopy, clip, wl-copy, xclip, or xsel) if available.

Examples

3w      move forward 3 words
ciw     change inner word
daw     delete around word
yy      yank current line
p       paste yanked text
f,      find the next comma
;       repeat the last find

Limitations

This is a Vim-like subset, not full Vim.

It only affects the text input/editor area inside pi, not the whole app.

In insert mode, most keys pass through to pi directly, except Esc, which returns to normal mode.

In normal / visual modes, some pi hotkeys may be intercepted by Vim-style key handling.

Not supported:

  • search with / or ?
  • macros
  • marks
  • dot-repeat (.)
  • multiple named registers

Uninstall

pi remove npm:vim-motions-pi

Source

  • GitHub: https://github.com/kepatrick/vim-motions-pi
  • Source lives in extensions/vim-motion.ts