From: Misha Brukman Date: Wed, 19 May 2004 21:20:40 +0000 (+0000) Subject: Add hint about syntax-highlighting non-standardly-named LLVM Makefiles. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e38adf52c8b367b86a547fcf967047d1968ae9f2;p=oota-llvm.git Add hint about syntax-highlighting non-standardly-named LLVM Makefiles. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13606 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/vim/README b/utils/vim/README index af0949d8524..466de4f686a 100644 --- a/utils/vim/README +++ b/utils/vim/README @@ -32,3 +32,12 @@ up-to-date with CVS. Note: If you notice missing or incorrect syntax highlighting, please contact ; if you wish to provide a patch to improve the functionality, it will be most appreciated. Thank you. + +If you find yourself working with LLVM Makefiles often, but you don't get syntax +highlighting (because the files have names such as Makefile.rules or +TEST.nightly.Makefile), add the following to your ~/.vimrc: + + " LLVM Makefile highlighting mode + augroup filetype + au! BufRead,BufNewFile *Makefile* set filetype=make + augroup END