Let's say I want to replace '23px' with '500px' in a 3000 line CSS file, where there are dozens of instances of '23px'. I only want to apply this command:
:%s,23px,500px,gc
To lines 550 to 603. Is there any (preferably succinct) way of specifying that I want the command to only apply to 550 to 603? I'm open to also selecting the area visually with SHIFT-V and j/k and then running a command that only applies to the selected/highlighted portion.
