summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-13 19:52:44 +0100
committermathieui <mathieui@mathieui.net>2011-11-13 19:52:44 +0100
commit68d25ec4ef81053b4770e3981f4ebe013a331c05 (patch)
tree38885bb79fe7f651457a408dc1912b19c682a32b /doc
parent3dbb45dc76a28bf514b42c08f296b779bb1ee9cc (diff)
downloadpoezio-68d25ec4ef81053b4770e3981f4ebe013a331c05.tar.gz
poezio-68d25ec4ef81053b4770e3981f4ebe013a331c05.tar.bz2
poezio-68d25ec4ef81053b4770e3981f4ebe013a331c05.tar.xz
poezio-68d25ec4ef81053b4770e3981f4ebe013a331c05.zip
Plugin doc for del_tab_command
Diffstat (limited to 'doc')
-rw-r--r--doc/en/plugins.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/en/plugins.txt b/doc/en/plugins.txt
index 7bb3dbe3..f55eda6d 100644
--- a/doc/en/plugins.txt
+++ b/doc/en/plugins.txt
@@ -106,6 +106,13 @@ Everything else is handled by that _auto_completion()_ method (checking what
strings match, how to cycle between matches, etc). If you don’t want any
special completion for that command, just pass None (the default value).
+*del_tab_command*:: +self+, +tab_type+, +name+
+This method removes a tab command added by your plugin.
+
+* _name_: (string) the name of the command you want to remove.
+* _name_: the type of tab (see help for _add_tab_command_)
+
+
*add_event_handler**: +self+, +event_name+, +handler+ +position+
This methods adds a callback that will be called whenever the given event
occurs. <<example-2,ex 2>>