From efd78313205dcccd1462ca142d6bbdcd94874436 Mon Sep 17 00:00:00 2001 From: Logan Gartner Date: Sat, 27 Nov 2021 19:34:35 -0700 Subject: [PATCH] Remove useless whitespace from all files, not just Python ones --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 979d36e..6acbe18 100644 --- a/.vimrc +++ b/.vimrc @@ -9,7 +9,7 @@ set nowrap " don't wrap lines set tabstop=2 shiftwidth=2 " a tab is two spaces (or set this to 4) set expandtab " use spaces, not tabs (optional) set backspace=indent,eol,start " backspace through everything in insert mode -autocmd BufWritePre *.py :%s/\s\+$//e " Trim whitespace on file save +autocmd BufWritePre * :%s/\s\+$//e " Trim whitespace on file save "" Searching set hlsearch " highlight matches