mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Merge pull request #1026 from vague666/perl_hidden_view_access
add access to set hidden_level from perl
This commit is contained in:
commit
690e441771
@ -6,7 +6,7 @@
|
|||||||
#define IRSSI_GLOBAL_CONFIG "irssi.conf" /* config file name in /etc/ */
|
#define IRSSI_GLOBAL_CONFIG "irssi.conf" /* config file name in /etc/ */
|
||||||
#define IRSSI_HOME_CONFIG "config" /* config file name in ~/.irssi/ */
|
#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_PORT 6667
|
||||||
#define DEFAULT_SERVER_ADD_TLS_PORT 6697
|
#define DEFAULT_SERVER_ADD_TLS_PORT 6697
|
||||||
|
@ -16,6 +16,11 @@ textbuffer_view_set_default_indent(view, default_indent, longword_noindent)
|
|||||||
CODE:
|
CODE:
|
||||||
textbuffer_view_set_default_indent(view, default_indent, longword_noindent, NULL);
|
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
|
void
|
||||||
textbuffer_view_set_scroll(view, scroll)
|
textbuffer_view_set_scroll(view, scroll)
|
||||||
Irssi::TextUI::TextBufferView view
|
Irssi::TextUI::TextBufferView view
|
||||||
@ -53,6 +58,11 @@ void
|
|||||||
textbuffer_view_remove_all_lines(view)
|
textbuffer_view_remove_all_lines(view)
|
||||||
Irssi::TextUI::TextBufferView view
|
Irssi::TextUI::TextBufferView view
|
||||||
|
|
||||||
|
void
|
||||||
|
textbuffer_view_remove_lines_by_level(view, level)
|
||||||
|
Irssi::TextUI::TextBufferView view
|
||||||
|
int level
|
||||||
|
|
||||||
void
|
void
|
||||||
textbuffer_view_set_bookmark(view, name, line)
|
textbuffer_view_set_bookmark(view, name, line)
|
||||||
Irssi::TextUI::TextBufferView view
|
Irssi::TextUI::TextBufferView view
|
||||||
|
Loading…
Reference in New Issue
Block a user