web-dev-qa-db-ja.com

Makefileと通常のコードファイルの両方を編集するようにvimをセットアップする方法

Mac OSX 10.7.5を使用しています。vimrcの内容は次のとおりです。

set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
set shiftround  
set smarttab    
set autoindent  
set copyindent  

autocmd FileType make setlocal noexpandtab

私がやろうとしていることは、.js、.htmlなどの通常のファイルを編集するときに、通常のタブではなく4つの空白スペースでタブをインデントすることです。

ただし、Makefileを編集するときは、インデント用に4つの空白スペースではなく、通常のタブにする必要があります。

上記の.vimrcの設定でそれが得られると思いましたが、Makefileを編集しているときにインデント用に4つの空白スペースが残っているため、うまくいきません。

ここで何が間違っているのかわかりませんか?

24
forestclown

これは私の.vimrcのセクションです:

" enable filetype detection:
filetype on
filetype plugin on
filetype indent on " file type based indentation

" recognize anything in my .Postponed directory as a news article, and anything
" at all with a .txt extension as being human-language text [this clobbers the
" `help' filetype, but that doesn't seem to prevent help from working
" properly]:
augroup filetype
  autocmd BufNewFile,BufRead */.Postponed/* set filetype=mail
  autocmd BufNewFile,BufRead *.txt set filetype=human
augroup END

autocmd FileType mail set formatoptions+=t textwidth=72 " enable wrapping in mail
autocmd FileType human set formatoptions-=t textwidth=0 " disable wrapping in txt

" for C-like  programming where comments have explicit end
" characters, if starting a new line in the middle of a comment automatically
" insert the comment leader characters:
autocmd FileType c,cpp,Java set formatoptions+=ro
autocmd FileType c set omnifunc=ccomplete#Complete

" fixed indentation should be OK for XML and CSS. People have fast internet
" anyway. Indentation set to 2.
autocmd FileType html,xhtml,css,xml,xslt set shiftwidth=2 softtabstop=2

" two space indentation for some files
autocmd FileType vim,lua,nginx set shiftwidth=2 softtabstop=2

" for CSS, also have things in braces indented:
autocmd FileType css set omnifunc=csscomplete#CompleteCSS

" add completion for xHTML
autocmd FileType xhtml,html set omnifunc=htmlcomplete#CompleteTags

" add completion for XML
autocmd FileType xml set omnifunc=xmlcomplete#CompleteTags

" in makefiles, don't expand tabs to spaces, since actual tab characters are
" needed, and have indentation at 8 chars to be sure that all indents are tabs
" (despite the mappings later):
autocmd FileType make set noexpandtab shiftwidth=8 softtabstop=0

" ensure normal tabs in Assembly files
" and set to NASM syntax highlighting
autocmd FileType asm set noexpandtab shiftwidth=8 softtabstop=0 syntax=nasm

このセクションは自明ですが、filetypeおよびautocmdのvimヘルプを読むことをお勧めします。

あなたに最も関連する行は、おそらくこれです:

autocmd FileType make set noexpandtab shiftwidth=8 softtabstop=0

ただし、ファイルタイプの検出がオンになっていることを確認してください。

27
polemon

これをautocmdsで行う代わりに、ファイルタイプごとに独自のユーザーファイルタイププラグインを作成し、~/.vim/ftplugin/<filetype>.vimに配置することができます。ここで、<filetype>は実際のファイルタイプです。例えば:

mkdir -p ~/.vim/ftplugin
echo "setlocal noexpandtab" > ~/.vim/ftplugin/make.vim

次のコマンドを使用して、~/.vimrcでファイルタイププラグインが有効になっていることを確認する必要があります。

filetype plugin on
8
Heptite

常にタブを展開するようにvimを構成する方が簡単です。これは、メイクファイルを除くすべてのファイルに必要なことです。 makefileでは、任意の場所にタブを挿入するために使用できます。展開されません。

0
zeozod