0

我使用 MacVim 来编辑我的代码。在Vim、Emacs 和 textedit中缩进看起来很不错。但是它们在Textmate2,textwrangler中看起来很糟糕。

如何使 Vim 的缩进在其他软件中看起来一致?(例如 Textmate、textwrangler)?

这是我关于 Tap 的 vim 设置:

"auto indent of new line accoring to the previous line
set autoindent 
"smart indent for c program
set smartindent
" add tab of new line
set smarttab
" define smarttab length
set shiftwidth=4

vim emacs 文本编辑 同学 文本

4

1 回答 1

3

看起来这些程序并不都以相同的方式解释选项卡。确保它在所有文本编辑器中看起来都相同的最简单方法是仅使用空格:

set tabstop=4
set shiftwidth=4
set expandtab

您可能还想使用:retab. 结帐将制表符转换为空格以获取更多信息。

于 2013-01-08T10:33:23.633 回答