mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
sideways split support for Irssi
warning: * may be buggy This commit adds support for sideways splits into Irssi. To that regard, there are a number of new commands available the "R" commands: /window new rsplit - make a new sideways split /window rshow - show an existing window to the right /window rgrow/rshrink/rsize/rbalance - manipulate the size of your sideways split windows the "D" commands: /window dup/ddown/dleft/dright - navigate the windows directionally, as an alternative to /window up/down that you can bind to some key /window move dleft/dright - the same for moving Enjoy!
This commit is contained in:
parent
451019d05d
commit
4e71a1f485
18 changed files with 1373 additions and 345 deletions
|
|
@ -85,6 +85,8 @@ void term_addch(TERM_WINDOW *window, char chr);
|
|||
void term_add_unichar(TERM_WINDOW *window, unichar chr);
|
||||
int term_addstr(TERM_WINDOW *window, const char *str);
|
||||
void term_clrtoeol(TERM_WINDOW *window);
|
||||
void term_window_clrtoeol(TERM_WINDOW* window, int ypos);
|
||||
void term_window_clrtoeol_abs(TERM_WINDOW* window, int ypos_abs);
|
||||
|
||||
void term_move_cursor(int x, int y);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue