1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-23 06:35:36 +00:00

Merge pull request #1026 from vague666/perl_hidden_view_access

add access to set hidden_level from perl
This commit is contained in:
ailin-nemui 2019-04-05 16:02:41 +02:00 committed by GitHub
commit 690e441771
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -6,7 +6,7 @@
#define IRSSI_GLOBAL_CONFIG "irssi.conf" /* config file name in /etc/ */
#define IRSSI_HOME_CONFIG "config" /* config file name in ~/.irssi/ */
#define IRSSI_ABI_VERSION 20
#define IRSSI_ABI_VERSION 21
#define DEFAULT_SERVER_ADD_PORT 6667
#define DEFAULT_SERVER_ADD_TLS_PORT 6697

View File

@ -16,6 +16,11 @@ textbuffer_view_set_default_indent(view, default_indent, longword_noindent)
CODE:
textbuffer_view_set_default_indent(view, default_indent, longword_noindent, NULL);
void
textbuffer_view_set_hidden_level(view, level)
Irssi::TextUI::TextBufferView view
int level
void
textbuffer_view_set_scroll(view, scroll)
Irssi::TextUI::TextBufferView view
@ -53,6 +58,11 @@ void
textbuffer_view_remove_all_lines(view)
Irssi::TextUI::TextBufferView view
void
textbuffer_view_remove_lines_by_level(view, level)
Irssi::TextUI::TextBufferView view
int level
void
textbuffer_view_set_bookmark(view, name, line)
Irssi::TextUI::TextBufferView view