Vim Pairify
Description
A simplistic vim plugin to deal with pairs non-intrusively
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
vim-pairify v0.6.0 [](https://github.com/dhruvasagar/vim-pairify/actions/workflows/ci.yml)
A simple plugin for pair completion such as `()` and `[]`. Press Ctrl-J in insert mode and the plugin identifies the correct closing character to insert. It handles nesting and multiline matching.
How it works
The plugin scans backwards from the cursor through all preceding lines, tracking open and close pairs on a stack. When it finds an unmatched opening character it inserts the corresponding closing character. If the cursor is already sitting before a closing character it moves past it instead.
**Angle brackets** (`<` and `>`) are treated as comparison operators when surrounded by a space (e.g. `a < b`) and as angle bracket pairs when not (e.g. `vector
Default pairs
| Opener | Closer |
|---|---|
( |
) |
[ |
] |
{ |
} |
< |
> |
' |
' |
" |
" |
` |
` |
Installation
Using any plugin manager (Pathogen, Vundle, vim-plug, etc.) or Vim 8+'s built-in package support:
# vim-plug
Plug 'dhruvasagar/vim-pairify'
# built-in packages
git clone https://github.com/dhruvasagar/vim-pairify \
~/.vim/pack/plugins/start/vim-pairify
Configuration
Change the trigger key
The default mapping is Ctrl-J. To use a different key, set `g:pairify_map` in your vimrc **before** the plugin loads:
let g:pairify_map = ''
Customise pairs
Set `g:pairifiers` in your vimrc **before** the plugin loads to replace the default pair set entirely. The dict requires a `left` map (opener → closer) and a `right` map (closer → opener):
" Example: drop angle brackets and add | for Rust closures
let g:pairifiers = {
\ 'left': { '(': ')', '[': ']', '{': '}', "'": "'", '"': '"', '`': '`', '|': '|' },
\ 'right': { ')': '(',
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11