As the title shows, this is the tightening effect, it feels a bit big
闭关修行中......
vim ~/.vimrc set shiftwidth=4 //Automatically indent to 4 characters set expandtab //space replaces tab
You can do it without using V mode. For example, if you want to indent the 10 lines under the cursor (including the line where the cursor is), enter on the keyboard
10>>
vim ~/.vimrc
set shiftwidth=4 //Automatically indent to 4 characters
set expandtab //space replaces tab
You can do it without using V mode. For example, if you want to indent the 10 lines under the cursor (including the line where the cursor is), enter on the keyboard