Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v0.2.19 Home All releases olderv0.2.18 v0.2.25newer
Claude Code v0.2.19

New Features

Vim Mode Support

  • New command: vim - Toggle between vim and emacs editing modes
  • Usage: Simply type vim in the command prompt to switch modes
  • In vim mode: Use Escape key to toggle between INSERT and NORMAL modes
  • In emacs mode: Standard emacs-style keybindings are active
  • The editor mode preference is persisted in settings

️ Enhanced Text Editing

  • Vim mode implementation with full modal editing support:

Normal Mode Commands:

  • Movement: h (left), l (right), j (down), k (up)
  • Line navigation: 0 (start of line), $ (end of line)
  • Word navigation: w (next word), e (end of word), b (previous word)
  • Document navigation: gg (first line), G (last line)

Editing Commands:

  • i - Insert mode at cursor
  • I - Insert mode at beginning of line
  • a - Insert mode after cursor
  • A - Insert mode at end of line
  • x - Delete character under cursor
  • d + motion - Delete with motion (e.g., dd for delete line, d$ for delete to end of line)
  • D - Delete to end of line
  • c + motion - Change (delete and enter insert mode)
  • C - Change to end of line
  • . - Repeat last change

See this entry in the whole of v0.2.19 →