diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-05-19 21:20:40 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-05-19 21:20:40 +0000 |
commit | bd094e73d2d94cd97aaf63946e340c72c14ec00d (patch) | |
tree | 1be2668743457b8d0bb06af8b7789256a7dbe2e4 /llvm/utils | |
parent | c5bd926a62f57ea773e6dc9028b9c0804ffd40fc (diff) | |
download | bcm5719-llvm-bd094e73d2d94cd97aaf63946e340c72c14ec00d.tar.gz bcm5719-llvm-bd094e73d2d94cd97aaf63946e340c72c14ec00d.zip |
Add hint about syntax-highlighting non-standardly-named LLVM Makefiles.
llvm-svn: 13606
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/vim/README | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/utils/vim/README b/llvm/utils/vim/README index af0949d8524..466de4f686a 100644 --- a/llvm/utils/vim/README +++ b/llvm/utils/vim/README @@ -32,3 +32,12 @@ up-to-date with CVS. Note: If you notice missing or incorrect syntax highlighting, please contact <llvmbugs [at] cs.uiuc.edu>; 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 |