From: Dan Gohman Date: Tue, 31 Jan 2017 21:33:21 +0000 (+0000) Subject: [Utils] Update comment in vimrc X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d5536b1011d488ce9bff62fa76ff87aa04158cf;p=llvm [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 --- 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