summaryrefslogtreecommitdiff
path: root/src/plugins/python/weechat.pyi
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2022-03-13 14:07:22 +0100
committerSébastien Helleu <flashcode@flashtux.org>2022-03-13 14:07:22 +0100
commitc943d3507f0ee5471dba9ab95208fb42705ae367 (patch)
tree4eb7d63be7d796243b9cb3a52965c32488161800 /src/plugins/python/weechat.pyi
parent869279e9b6d6e4e68c02603a64ee1819a5c07601 (diff)
downloadweechat-c943d3507f0ee5471dba9ab95208fb42705ae367.zip
python: add function buffer_new_props in Python stub file
Diffstat (limited to 'src/plugins/python/weechat.pyi')
-rw-r--r--src/plugins/python/weechat.pyi7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/python/weechat.pyi b/src/plugins/python/weechat.pyi
index 312a97a32..005daee3c 100644
--- a/src/plugins/python/weechat.pyi
+++ b/src/plugins/python/weechat.pyi
@@ -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>`_"""
...