How to run commands against block-wise visual mode selection?
问题 I have a testing file with the content: var a = f ff fff Then I moved the cursor on the f character in line 1, ctrl + v selected the two f below it (■ means selection). var a = ■ ■f ■ff I want to change the text to this: var a = "f" "ff" "fff" So I executed this command: :normal i" ctrl + v Esc A" But the quotes were added to the whole line. Is it possible to do operations on only block-wise visual selection (not the whole line)? Note that this example was made only for discussing Vim skills.