1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00

python: add function buffer_new_props in Python stub file

This commit is contained in:
Sébastien Helleu
2022-03-13 14:07:22 +01:00
parent 869279e9b6
commit c943d3507f
+7
View File
@@ -586,6 +586,13 @@ def buffer_new(name: str, input_callback: str, input_callback_data: str,
...
def buffer_new_props(name: str, properties: Dict[str, str],
input_callback: str, input_callback_data: str,
close_callback: str, close_callback_data: str) -> str:
"""`buffer_new_props in WeeChat plugin API reference <https://weechat.org/doc/api#_buffer_new_props>`_"""
...
def current_buffer() -> str:
"""`current_buffer in WeeChat plugin API reference <https://weechat.org/doc/api#_current_buffer>`_"""
...