#neovim #linux
how to use vim :%s to replace all background-colors to black in css ?

@Halano

`:%s/\(background-color:\).\{-};/\1 black/`

(`\(…\)` defines capture group `\1`, `.\{-}` is the non-greedy wild-card variant of `.*`)