0

MacVim を使用してコードを編集しています。インデントは、 Vim、Emacs、および textedit でかなり見栄えがします。しかし、Textmate2、textwrangler ではひどいものに見えます。

Vim によるインデントを他のソフトウェアで一貫して表示するにはどうすればよいですか? (例: Textmate、textwrangler)?

これはタップに関する私の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

ヴィム emacs テキスト編集 テキストメイト テキストラグ

4

1 に答える 1

3

これらのプログラムは、タブを同じように解釈しないようです。すべてのテキストエディタで同じように見えるようにする最も簡単な方法は、スペースのみを使用することです。

set tabstop=4
set shiftwidth=4
set expandtab

を使用することもできます:retab。詳細については、タブをスペースに変換するをご覧ください。

于 2013-01-08T10:33:23.633 に答える