aboutsummaryrefslogtreecommitdiff
path: root/utils/vim/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'utils/vim/vimrc')
-rw-r--r--utils/vim/vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/vim/vimrc b/utils/vim/vimrc
index c35eb0ecbbeb..37983e4779fe 100644
--- a/utils/vim/vimrc
+++ b/utils/vim/vimrc
@@ -1,5 +1,5 @@
" LLVM coding guidelines conformance for VIM
-" $Revision: 176235 $
+" $Revision: 293693 $
"
" Maintainer: The LLVM Team, http://llvm.org
" WARNING: Read before you source in all these commands and macros! Some
@@ -74,13 +74,13 @@ command! DeleteTrailingWs :%s/\s\+$//
command! Untab :%s/\t/ /g
" Enable syntax highlighting for LLVM files. To use, copy
-" utils/vim/llvm.vim to ~/.vim/syntax .
+" utils/vim/syntax/llvm.vim to ~/.vim/syntax .
augroup filetype
au! BufRead,BufNewFile *.ll set filetype=llvm
augroup END
" Enable syntax highlighting for tablegen files. To use, copy
-" utils/vim/tablegen.vim to ~/.vim/syntax .
+" utils/vim/syntax/tablegen.vim to ~/.vim/syntax .
augroup filetype
au! BufRead,BufNewFile *.td set filetype=tablegen
augroup END