Highlight specific lines
I often pair program remotely with colleagues over a screen share. (Shout out to Tuple, hands down the best pair programming app.) When I’m driving and sharing my screen, I often want to call attention to a certain line to my remote pair. Usually, I just press shift-V
to visually select the current line. This does the job, but the highlighting disappears as soon as I move my cursor.
I recently added two new mappings that let me highlight a specific line or lines. The highlights persist as I move around the screen, allowing me to draw attention to a line or multiple lines. Whether pairing or just working on my own, having a specific area highlighted temporarily can be of great benefit. Here’s how I do it:
" define line highlight color
highlight LineHighlight ctermbg=darkgray guibg=darkgray
" highlight the current line
nnoremap <silent> <Leader>l :call matchadd('LineHighlight', '\%'.line('.').'l')<CR>
" clear all the highlighted lines
nnoremap <silent> <Leader>c :call clearmatches()<CR>
With these mappings added to my .vimrc
, I can press <Leader>l
(mnemonic is “line”) to highlight the current line. I can move to another line and repeat to highlight that line as well. And then when I’m done, I can clear all the highlights in the buffer by pressing <Leader>c
(mnemonic is “clear”).
Check out the short screencast below where I demonstrate this in action. Do you pair program much with Vim? I’d be curious to hear what setup you use and what configuration, mappings, or plugins aid you when doing so. Email us or post a comment on the post.