summaryrefslogtreecommitdiff
path: root/utils/vim
diff options
context:
space:
mode:
authorDan Gohman <dan433584@gmail.com>2017-01-31 21:33:21 +0000
committerDan Gohman <dan433584@gmail.com>2017-01-31 21:33:21 +0000
commit4d5536b1011d488ce9bff62fa76ff87aa04158cf (patch)
treeed673df1ef06ae6c371b7fb3771fd9284c1fa1ea /utils/vim
parent1e61910503389bd1e219fcbda3ff6e23a8b460d0 (diff)
[Utils] Update comment in vimrc
Fixed wrong paths in comments for *.vim files. Patch By: Bruno Rosa (brunoalr) Differential Revision: https://reviews.llvm.org/D29174 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293693 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/vim')
-rw-r--r--utils/vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/vim/vimrc b/utils/vim/vimrc
index fd87d767d6f..2cc8ae9cfa2 100644
--- a/utils/vim/vimrc
+++ b/utils/vim/vimrc
@@ -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