summaryrefslogtreecommitdiff
path: root/utils/vim/vimrc
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-01-08 02:17:30 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-01-08 02:17:30 +0000
commit5539a1ecdadf3397dc40827640332289fd87cd6a (patch)
treec6085fd298d45780ee87ab8b55a9c2a7b92f1c17 /utils/vim/vimrc
parentcb5852d1f7a45dcb3c8a56120ba16b2c1825c990 (diff)
downloadllvm-5539a1ecdadf3397dc40827640332289fd87cd6a.tar.gz
llvm-5539a1ecdadf3397dc40827640332289fd87cd6a.tar.bz2
llvm-5539a1ecdadf3397dc40827640332289fd87cd6a.tar.xz
Use VIM's built-in shorthand for whitespace in regex.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/vim/vimrc')
-rw-r--r--utils/vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/vim/vimrc b/utils/vim/vimrc
index 4be2b7f793..43038399ea 100644
--- a/utils/vim/vimrc
+++ b/utils/vim/vimrc
@@ -50,7 +50,7 @@ autocmd FileType make set noexpandtab
" Useful macros for cleaning up code to conform to LLVM coding guidelines
" Delete trailing whitespace and tabs at the end of each line
-command! DeleteTrailingWs :%s/[\ \t]\+$//
+command! DeleteTrailingWs :%s/\s\+$//
" Convert all tab characters to two spaces
command! Untab :%s/\t/ /g