Document Iteration Skill

A structured markdown syntax for iterating on documents with Claude AI

View the Project on GitHub foksa/document-iteration-skill

Vim/Neovim

Visual highlighting of iteration markers in Vim and Neovim.

Syntax Highlighting

Add to your config (.vimrc or init.vim):

" Highlight iteration markers
" Comments: %% comment %% and responses: •%%>response <%%•
syntax match IterationMarker /%%[^%]*%%/
syntax match IterationMarker /•%%>[^<]*<%%•/
highlight IterationMarker guibg=#FFA500 guifg=#000000

" Highlights: ==text(TOKEN)==
syntax match IterationHighlight /==[^=]*([^)]*)==/
highlight IterationHighlight guibg=#FFFF00 guifg=#000000