Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-02-23 01:06:37 +0400
committerDiego Biurrun <diego@biurrun.de>2013-02-23 23:13:47 +0400
commit040c565e51985477a8fa5e42d2ddfb26ebde6608 (patch)
tree83922cdb5e568b44517c30b531b7518197f99f91
parent94ee7da08d2af875f485d4f784d50726cf3078f4 (diff)
doc: developer: Allow tabs in the vim configuration for Automake files
While we do not use Automake in libav, this allows our config to be used more globally without introducing unwanted breakage.
-rw-r--r--doc/developer.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer.texi b/doc/developer.texi
index a30cc9dfaa..54c1ec667a 100644
--- a/doc/developer.texi
+++ b/doc/developer.texi
@@ -229,7 +229,7 @@ set softtabstop=4
set cindent
set cinoptions=(0
" Allow tabs in Makefiles.
-autocmd FileType make set noexpandtab shiftwidth=8 softtabstop=8
+autocmd FileType make,automake set noexpandtab shiftwidth=8 softtabstop=8
" Trailing whitespace and tabs are forbidden, so highlight them.
highlight ForbiddenWhitespace ctermbg=red guibg=red
match ForbiddenWhitespace /\s\+$\|\t/