mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 23:31:51 +00:00
Cleanup 'ttyscroll' remnants
Removed in 3baba1e7bc
, but the docs
weren't updated.
This commit is contained in:
@@ -6780,12 +6780,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
'ttymouse' 'ttym' Removed. |vim-differences| {Nvim}
|
'ttymouse' 'ttym' Removed. |vim-differences| {Nvim}
|
||||||
|
|
||||||
*'ttyscroll'* *'tsl'*
|
*'ttyscroll'* *'tsl'*
|
||||||
'ttyscroll' 'tsl' number (default 999)
|
'ttyscroll' 'tsl' Removed. |vim-differences| {Nvim}
|
||||||
global
|
|
||||||
Maximum number of lines to scroll the screen. If there are more lines
|
|
||||||
to scroll the window is redrawn. For terminals where scrolling is
|
|
||||||
very slow and redrawing is not slow this can be set to a small number,
|
|
||||||
e.g., 3, to speed up displaying.
|
|
||||||
|
|
||||||
*'ttytype'* *'tty'*
|
*'ttytype'* *'tty'*
|
||||||
'ttytype' 'tty' string (default from $TERM)
|
'ttytype' 'tty' string (default from $TERM)
|
||||||
|
@@ -902,7 +902,6 @@ Short explanation of each option: *option-list*
|
|||||||
'toolbariconsize' 'tbis' size of the toolbar icons (for GTK 2 only)
|
'toolbariconsize' 'tbis' size of the toolbar icons (for GTK 2 only)
|
||||||
'ttimeout' time out on mappings
|
'ttimeout' time out on mappings
|
||||||
'ttimeoutlen' 'ttm' time out time for key codes in milliseconds
|
'ttimeoutlen' 'ttm' time out time for key codes in milliseconds
|
||||||
'ttyscroll' 'tsl' maximum number of lines for a scroll
|
|
||||||
'ttytype' 'tty' alias for 'term'
|
'ttytype' 'tty' alias for 'term'
|
||||||
'undodir' 'udir' where to store undo files
|
'undodir' 'udir' where to store undo files
|
||||||
'undofile' 'udf' save undo information in a file
|
'undofile' 'udf' save undo information in a file
|
||||||
|
@@ -504,10 +504,6 @@ If the characters from the terminal are arriving with more than 1 second
|
|||||||
between them you might want to set the 'timeout' and/or 'ttimeout' option.
|
between them you might want to set the 'timeout' and/or 'ttimeout' option.
|
||||||
See the "Options" chapter |options|.
|
See the "Options" chapter |options|.
|
||||||
|
|
||||||
If your terminal scrolls very slowly, but redrawing is not slow, set the
|
|
||||||
'ttyscroll' option to a small number, e.g., 3. This will make Vim redraw the
|
|
||||||
screen instead of scrolling, when there are more than 3 lines to be scrolled.
|
|
||||||
|
|
||||||
If you are using a color terminal that is slow, use this command: >
|
If you are using a color terminal that is slow, use this command: >
|
||||||
hi NonText cterm=NONE ctermfg=NONE
|
hi NonText cterm=NONE ctermfg=NONE
|
||||||
This avoids that spaces are sent when they have different attributes. On most
|
This avoids that spaces are sent when they have different attributes. On most
|
||||||
|
@@ -3141,8 +3141,6 @@ Performance:
|
|||||||
default, instead of using the block size of the device, because the swap
|
default, instead of using the block size of the device, because the swap
|
||||||
file is created only after setting the block size in mf_open(). How can
|
file is created only after setting the block size in mf_open(). How can
|
||||||
this be improved?
|
this be improved?
|
||||||
8 Set default for 'ttyscroll' to half a screen height? Should speed up
|
|
||||||
MS-DOS version. (Negri)
|
|
||||||
7 C syntax highlighting gets a lot slower after ":set foldmethod=syntax".
|
7 C syntax highlighting gets a lot slower after ":set foldmethod=syntax".
|
||||||
(Charles Campbell) Inserting a "{" is very slow. (dman)
|
(Charles Campbell) Inserting a "{" is very slow. (dman)
|
||||||
7 HTML syntax highlighting is slow for long lines. Try displaying
|
7 HTML syntax highlighting is slow for long lines. Try displaying
|
||||||
|
@@ -564,7 +564,6 @@ EXTERN char_u *p_titlestring; /* 'titlestring' */
|
|||||||
EXTERN char_u *p_tsr; /* 'thesaurus' */
|
EXTERN char_u *p_tsr; /* 'thesaurus' */
|
||||||
EXTERN int p_ttimeout; /* 'ttimeout' */
|
EXTERN int p_ttimeout; /* 'ttimeout' */
|
||||||
EXTERN long p_ttm; /* 'ttimeoutlen' */
|
EXTERN long p_ttm; /* 'ttimeoutlen' */
|
||||||
EXTERN long p_ttyscroll; /* 'ttyscroll' */
|
|
||||||
EXTERN char_u *p_udir; /* 'undodir' */
|
EXTERN char_u *p_udir; /* 'undodir' */
|
||||||
EXTERN long p_ul; /* 'undolevels' */
|
EXTERN long p_ul; /* 'undolevels' */
|
||||||
EXTERN long p_ur; /* 'undoreload' */
|
EXTERN long p_ur; /* 'undoreload' */
|
||||||
|
Reference in New Issue
Block a user