summaryrefslogtreecommitdiff
path: root/alot/commands/__init__.py
diff options
context:
space:
mode:
authorSebastian Jeltsch <sjeltsch@kip.uni-heidelberg.de>2013-04-20 13:54:35 +0200
committerSebastian Jeltsch <sjeltsch@kip.uni-heidelberg.de>2013-05-26 14:33:28 +0200
commit64250e22d9bb30f29f9bcb6d9fecb3dc6077cda8 (patch)
treefba84ebe29b82f17d2e006e61fde96f5d9b01fec /alot/commands/__init__.py
parentcf3cec6c42f859ea79e0e74774f067f426f988ee (diff)
change cmd repeatability to be command prop and make move cmds non-repeatable
Diffstat (limited to 'alot/commands/__init__.py')
-rw-r--r--alot/commands/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/alot/commands/__init__.py b/alot/commands/__init__.py
index 2fd61b84..2c02240b 100644
--- a/alot/commands/__init__.py
+++ b/alot/commands/__init__.py
@@ -18,6 +18,7 @@ class Command(object):
self.prehook = None
self.posthook = None
self.undoable = False
+ self.repeatable = True
self.help = self.__doc__
def apply(self, caller):