I have text in Vim
- hit
Ctrl+Vto put VIm in block mode - highlight the text I want
- type
:this gives the this prompt:'<,'> - I add to the prompt my regex
s/ /*/g. This leaves me with:'<,'>s/ /*/gand the text highlighted - I hit enter
Unfortunately, it operates on the whole line for the block, not just the block. Is there anyway to do a block search and replace?