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 releases Home olderv0.2.18 v0.2.25newer

Claude Code v0.2.19

4 entries read diff v0.2.18 → v0.2.19 Markdown
Find
Pick an entry · j / k steps through
4 entries

Changesopen

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

Improvements#

Input Handling Refactoring

  • Improved paste handling with better chunking for large text inputs
  • Enhanced placeholder rendering with cursor display
  • Better separation of concerns between input state management and rendering

Import Optimizations

  • Streamlined Node.js imports:
  • Combined imports from node:process (env, cwd)
  • Combined imports from node:stream (PassThrough)
  • Reduced redundant import statements

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

Technical Changes#

New Classes/Functions

  • q6 class (renamed from Gd) - Enhanced text cursor with new methods:
  • endOfWord() - Navigate to end of current/next word
  • startOfFirstLine() - Navigate to document start
  • startOfLastLine() - Navigate to last line start
  • Uf2() - Core vim mode state machine handling modal editing
  • jN1() - Vim-enabled text input component
  • sx() - Refactored input rendering component
  • y90() - Paste handling wrapper function

Settings

  • New editorMode setting added to persistent configuration
  • Default mode is "emacs" for backward compatibility

Usage Examples#

Switching to vim mode:

$ claude
> vim
Editor mode set to vim. Use Escape key to toggle between INSERT and NORMAL modes.

Using vim navigation:

# In NORMAL mode:
- Press 'i' to enter INSERT mode and start typing
- Press 'Escape' to return to NORMAL mode
- Use 'hjkl' for navigation
- Use 'dd' to delete a line
- Use '.' to repeat the last edit

Switching back to emacs mode:

> vim
Editor mode set to emacs. Using standard emacs-style keybindings.

The vim mode implementation provides a familiar editing experience for vim users while maintaining full compatibility with the existing emacs-style keybindings. The mode preference persists across sessions, so users only need to switch once.

Verbatim
No official entry

Not individually listed upstream

v0.2.19 does not have its own entry in Anthropic’s official changelog, because prerelease builds are often folded into a neighbouring release. Browse the full changelog for the closest official notes. Everything else on this page came out of the bundle instead, which is why the two lists don't match.

System prompt

The system prompt was not captured for this release, so this page cannot say whether it moved.