mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Added command history groups, set them with /WINDOW HISTORY. Patch by peder@ifi.uio.no
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2276 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
9ed228551b
commit
9ddebe6bcf
13 changed files with 243 additions and 78 deletions
|
|
@ -23,6 +23,7 @@ static void perl_window_fill_hash(HV *hv, WINDOW_REC *window)
|
|||
{
|
||||
hv_store(hv, "refnum", 6, newSViv(window->refnum), 0);
|
||||
hv_store(hv, "name", 4, new_pv(window->name), 0);
|
||||
hv_store(hv, "history_name", 12, new_pv(window->history_name), 0);
|
||||
|
||||
hv_store(hv, "width", 5, newSViv(window->width), 0);
|
||||
hv_store(hv, "height", 6, newSViv(window->height), 0);
|
||||
|
|
|
|||
|
|
@ -205,6 +205,11 @@ window_set_name(window, name)
|
|||
Irssi::UI::Window window
|
||||
char *name
|
||||
|
||||
void
|
||||
window_set_history(window, name)
|
||||
Irssi::UI::Window window
|
||||
char *name
|
||||
|
||||
void
|
||||
window_set_level(window, level)
|
||||
Irssi::UI::Window window
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue