vim-sneak is a motion plugin for Vim that enables jumping to any location by typing two characters.
The plugin addresses the friction of navigating to distant positions in a file. Rather than using search with `/` or moving character-by-character, Sneak lets you type `s` followed by exactly two characters to jump immediately to the next match. The approach is minimal: it integrates with Vim's existing motion system, supporting operators, the repeat command `.`, motion-repeat with `;` and `,`, visual mode, and macros. Matches are highlighted until you move the cursor, and you can navigate through multiple results or limit searches to a vertical scope using a count prefix.
Sneak suits developers who want faster navigation without the overhead of heavier motion plugins. The README names EasyMotion as an alternative and positions Sneak's label-mode as a minimalist counterpart. The tool works across multiple lines and handles multibyte text, making it practical for diverse codebases. It requires Vim 7.3 or newer, with label-mode needing Vim 7.4.792 or later; Neovim 0.5 and above use virtual text for label rendering instead of the legacy conceal feature. The dot-repeat feature for operations requires the separate repeat.vim plugin.
Development activity shows consistent engagement with the codebase through regular commits addressing edge cases and user-reported issues. The maintainer actively responds to issues and pull requests, indicating ongoing stewardship. Documentation is thorough, with detailed help text covering usage patterns and configuration options. The project maintains compatibility across Vim versions and Neovim, updating implementations as the Neovim API evolves.