📜  如何在 vi 中注释多行 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:00.157000             🧑  作者: Mango

代码示例2
# To comment
Press ESC
hit V
Move the cursor until desired lines to comment
hit :
'<,'>s!^!//!

# To uncomment
'<,'>s!^//!!