mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 21:00:40 +02:00
/SET force_colors -> /SET term_force_colors. Added /SET term_scroll_fast
option to specify if we want to scroll with fastest method, or the cleanest method. The default is cleanest and it looks best with xterm, with some other terminals where line-by-line scroll is slow, you might want to use the fast scrolling. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2015 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
0dafb7349a
commit
4d771c54d9
6 changed files with 57 additions and 11 deletions
|
|
@ -170,6 +170,13 @@ void term_force_colors(int set)
|
|||
terminfo_setup_colors(current_term, set);
|
||||
}
|
||||
|
||||
/* Setup scrolling - if fast is TRUE, we'll use the fastest method to
|
||||
scroll, if it's FALSE, we'll use the one that looks cleanest. */
|
||||
void term_setup_scroll(int fast)
|
||||
{
|
||||
terminfo_setup_scroll(current_term, fast);
|
||||
}
|
||||
|
||||
/* Clear screen */
|
||||
void term_clear(void)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue