vim 中的自动缩进总是将 8 个或更多前导空格更改为制表符。如何解决这个问题?

发布于 2024-11-07 16:38:08 字数 238 浏览 0 评论 0原文

如下所示:

while (head == tail)
{
....if (head == 100)
....{
........blahblahblah  <hit_return>
<-tab-->"SEE? Autoindent change the leading whitespace into tab"

我可以解决这个问题并让自动缩进始终使用空格作为缩进字符吗?

It is demonstrated below:

while (head == tail)
{
....if (head == 100)
....{
........blahblahblah  <hit_return>
<-tab-->"SEE? Autoindent change the leading whitespace into tab"

Can I fix this and let autoindent always use whitespace as indent character?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沫离伤花 2024-11-14 16:38:08

查看 Expandtab 选项。要在按下 Tab 键或 vim 自动缩进一行时插入空格字符,请设置 expandtab 选项:

:set expandtab

将所有制表符更改为适当数量的空格(由 tabstop< 控制) /code> 选项和默认的 8)在设置 expandtab 后,执行以下操作:

:retab

Look into the expandtab option. To insert space characters whenever the tab key is pressed or when vim automatically indents a line, set the expandtab option:

:set expandtab

To change all tab characters into the appropriate amount of spaces (controlled by the tabstop option and 8 by default) after expandtab is set, do:

:retab
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文