Commit 734911d3 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add the <silent> flag to vim buffer up/down from terminal mode

parent 1533acc0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -44,8 +44,8 @@ if exists(':tnoremap')
	tnoremap <A-k> <C-\><C-n><C-w>k
	tnoremap <A-l> <C-\><C-n><C-w>l
	tnoremap <C-h> <C-\><C-n>gT
	tnoremap <C-j> <C-\><C-n>:CtrlSpaceGoDown<CR>
	tnoremap <C-k> <C-\><C-n>:CtrlSpaceGoUp<CR>
	tnoremap <silent> <C-j> <C-\><C-n>:CtrlSpaceGoDown<CR>
	tnoremap <silent> <C-k> <C-\><C-n>:CtrlSpaceGoUp<CR>
	tnoremap <C-l> <C-\><C-n>gt
	tnoremap <Leader><Esc> <C-\><C-n>
endif