comparison runtime/doc/term.txt @ 31229:5b71c3884a2a v9.0.0948

patch 9.0.0948: 'ttyfast' is set for arbitrary terminals Commit: https://github.com/vim/vim/commit/c1cf4c91072f91b6b8dd636627a4ddf6f4b21f16 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 25 15:09:35 2022 +0000 patch 9.0.0948: 'ttyfast' is set for arbitrary terminals Problem: 'ttyfast' is set for arbitrary terminals. Solution: Always set 'ttyfast'. (closes https://github.com/vim/vim/issues/11549)
author Bram Moolenaar <Bram@vim.org>
date Fri, 25 Nov 2022 16:15:04 +0100
parents eb2638f278bf
children ff4473b3fc58
comparison
equal deleted inserted replaced
31228:e02f5b4a17ee 31229:5b71c3884a2a
766 between them you might want to set the 'timeout' and/or 'ttimeout' option. 766 between them you might want to set the 'timeout' and/or 'ttimeout' option.
767 See the "Options" chapter |options|. 767 See the "Options" chapter |options|.
768 768
769 If your terminal does not support a scrolling region, but it does support 769 If your terminal does not support a scrolling region, but it does support
770 insert/delete line commands, scrolling with multiple windows may make the 770 insert/delete line commands, scrolling with multiple windows may make the
771 lines jump up and down. If you don't want this set the 'ttyfast' option. 771 lines jump up and down. This would happen if the 'ttyfast' option has been
772 This will redraw the window instead of scroll it. 772 reset. Check that with: >
773 verbose set ttyfast?
773 774
774 If your terminal scrolls very slowly, but redrawing is not slow, set the 775 If your terminal scrolls very slowly, but redrawing is not slow, set the
775 'ttyscroll' option to a small number, e.g., 3. This will make Vim redraw the 776 'ttyscroll' option to a small number, e.g., 3. This will make Vim redraw the
776 screen instead of scrolling, when there are more than 3 lines to be scrolled. 777 screen instead of scrolling, when there are more than 3 lines to be scrolled.
777 778