summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-06-16 18:39:25 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-06-16 18:39:25 +0100
commit92b02bdd10349a545f6cdf3516787f3a4cb546f2 (patch)
tree7043444df53941b1452f3815c768d1c37f199b30 /docs
parent3d7eb6e8e05386f15a0f3e3822a8e6741244e42e (diff)
doc: document hook touch_external_cmdlist
Diffstat (limited to 'docs')
-rw-r--r--docs/source/configuration/index.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/source/configuration/index.rst b/docs/source/configuration/index.rst
index d9716ad6..29abd2d1 100644
--- a/docs/source/configuration/index.rst
+++ b/docs/source/configuration/index.rst
@@ -233,6 +233,22 @@ Apart from command pre- and posthooks, the following hooks will be interpreted:
:type timestamp: `datetime`
:rtype: str
+.. py:function:: touch_external_cmdlist(cmd, shell=shell, spawn=spawn, thread=thread)
+
+ used to change external commands according to given flags shortly
+ before they are called.
+
+ :param cmd: command to be called
+ :type cmd: list of str
+ :param shell: is this to be interpreted by the shell?
+ :type shell: bool
+ :param spawn: should be spawned in new terminal/environment
+ :type spawn: bool
+ :param threads: should be called in new thread
+ :type thread: bool
+ :returns: triple of amended command list, shell and thread flags
+ :rtype: list of str, bool, bool
+
.. _themes:
Themes