Forráskód Böngészése

vim: fix flickering when clearing terminal

Thomas Dy 4 éve
szülő
commit
1640388d47
1 módosított fájl, 4 hozzáadás és 0 törlés
  1. 4 0
      .vim/init.vim

+ 4 - 0
.vim/init.vim

@@ -138,6 +138,10 @@ if has('nvim')
   autocmd BufWinEnter,WinEnter term://* startinsert
   autocmd BufLeave term://* stopinsert
 
+  " fix flickering when clearing terminal
+  autocmd TermEnter * setlocal scrolloff=0
+  autocmd TermLeave * setlocal scrolloff=99
+
   nnoremap <Leader>tv :vsp term://$SHELL<CR>
   nnoremap <Leader>to :term<CR>
 endif