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