summaryrefslogtreecommitdiff
path: root/plugins/pointpoint.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2013-09-06 16:05:58 +0200
committerFlorent Le Coz <louiz@louiz.org>2013-09-06 16:10:33 +0200
commit2f6324571e147d427eae0851f4ebf94e8cfed6a7 (patch)
tree91953dd4f29b410fa3c56c7ec128a77a10c1c610 /plugins/pointpoint.py
parent4b662ffa6787ac81a62e28e5e23b859cc9ed68a9 (diff)
downloadpoezio-2f6324571e147d427eae0851f4ebf94e8cfed6a7.tar.gz
poezio-2f6324571e147d427eae0851f4ebf94e8cfed6a7.tar.bz2
poezio-2f6324571e147d427eae0851f4ebf94e8cfed6a7.tar.xz
poezio-2f6324571e147d427eae0851f4ebf94e8cfed6a7.zip
Add the pointpoint plugin
Diffstat (limited to 'plugins/pointpoint.py')
-rw-r--r--plugins/pointpoint.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/plugins/pointpoint.py b/plugins/pointpoint.py
new file mode 100644
index 00000000..51b2662c
--- /dev/null
+++ b/plugins/pointpoint.py
@@ -0,0 +1,46 @@
+"""
+This plugin adds a command (that can be bound to a key) that adds a random
+number of dots in the input, making you look depressed, or overly thinking...
+
+.. note:: .......
+
+Installation
+------------
+Load the plugin.::
+
+ /load pointpoint
+
+Then use the command: ::
+
+ /pointpoint
+
+But since the goal is to be able to add the dots while typing a message,
+entering a command is not really useful. To be useful, this plugin needs to
+be used through a bound key, for example like this: ::
+
+ /bind M-. _exc_pointpoint
+
+You just need to press Alt+. and this will insert dots in your message.
+
+Command
+-------
+
+.. glossary::
+
+ /pointpoint
+ **Usage:** ``/pointpoint``
+
+
+"""
+
+from plugin import BasePlugin
+from random import randrange
+
+class Plugin(BasePlugin):
+ def init(self):
+ self.api.add_command('pointpoint', self.command_pointpoint,
+ help='Insert a random number of dots in the input')
+
+ def command_pointpoint(self, args):
+ for i in range(randrange(8, 25)):
+ self.core.current_tab().input.do_command(".")