one fable-low hijack cell
pair sed / vimscript
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked vimscript (second-offered)
· classifierB
· tiernone
response (200 chars)
Here's a comparison of `^` and sed-like substitution between Vimscript/Vim and sed:
## `^` — Start-of-line anchor (same in both)
```vim
" Vim
:%s/^foo/bar/
```
```bash
# sed
sed 's/^foo/bar/' file
`
neighbors