如何在vi(不是vim)中使用expandtab将制表符设置为4个空格
我通常是 vim 用户,现在我被迫使用 vi。有没有办法将制表符设置为 4 个空格?我不是在谈论设置 tabspace=4,而是实际上将制表符设置为等于 4 个单独的空格(这通常在 vim 中使用 Expandtab 完成)。
I'm normally a vim user and now I'm forced to use vi. Is there a way to set tabs to 4 spaces? I'm not talking about setting tabspace=4, but actually setting a tab to equal 4 individual spaces (this is normally done in vim using expandtab).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能不太漂亮,但是
:%s/\t/ /g
应该可以工作,其中第二组斜杠之间是四个空格字符。It may not be pretty, but
:%s/\t/ /g
, where what's between the second group of slashes is four space characters, should work.