aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-18 13:55:24 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-18 13:55:24 +1200
commit12fabe56ed84f74c56786e4fe22dbe3dc5d43550 (patch)
tree1420ce00d724ccf3f909989c0ea17ac1be4742c0 /vim/vimrc
parentMerge branch 'hotfix/v1.34.2' (diff)
downloaddotfiles-12fabe56ed84f74c56786e4fe22dbe3dc5d43550.tar.gz
dotfiles-12fabe56ed84f74c56786e4fe22dbe3dc5d43550.zip
Add missing :lwindow command to \. map
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index a7b598d9..f40823ee 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -315,8 +315,8 @@ nnoremap <Bslash>z :<C-U>setlocal spelllang=en_nz<CR>
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 to location list
-nnoremap <Bslash>. :<C-U>lmake!<CR>
+" \. runs the configured make program into the location list
+nnoremap <Bslash>. :<C-U>lmake!<Bar>:lwindow<CR>
" \DEL deletes the current buffer
nnoremap <Bslash><Delete> :<C-U>bdelete<CR>