aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-23 17:04:29 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-23 17:04:29 +1200
commita57b55af29914625451d257462ca777833026c0a (patch)
tree52c6d0b4b3d7de2e7b6fbddcdfc186baaded7bb1
parentAdd autocmds to always pop open quickfix/loclist (diff)
downloaddotfiles-a57b55af29914625451d257462ca777833026c0a.tar.gz
dotfiles-a57b55af29914625451d257462ca777833026c0a.zip
Remove now-unneeded :lwindow from \. map
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index ab0165c3..747c9c67 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -291,7 +291,7 @@ nnoremap <Bslash>= :<C-U>call vimrc#Anchor('1G=G')<CR>
" \+ runs the whole buffer through gq, preserving position
nnoremap <Bslash>+ :<C-U>call vimrc#Anchor('1GgqG')<CR>
" \. runs the configured make program into the location list
-nnoremap <Bslash>. :<C-U>lmake!<Bar>:lwindow<CR>
+nnoremap <Bslash>. :<C-U>lmake!<CR>
" \DEL deletes the current buffer
nnoremap <Bslash><Delete> :<C-U>bdelete<CR>