From 9adac6867bab56a2b67a1c0c9777d9a706b93c1c Mon Sep 17 00:00:00 2001 From: Kei Yoshimura <11.sigsegv@gmail.com> Date: Thu, 9 Jan 2014 23:53:17 +0900 Subject: [PATCH] Fix indentation --- simple_clone.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/simple_clone.py b/simple_clone.py index efda462..9c94430 100644 --- a/simple_clone.py +++ b/simple_clone.py @@ -181,17 +181,17 @@ def createLayout(rows, cols): return {'cells': layoutCells, 'rows': layoutRows, 'cols': layoutCols} - # Used to disable keymaps +# Used to disable keymaps def should_perform_clone(location): - disabled_keymaps = settings.get('disabled_keymaps', '') + disabled_keymaps = settings.get('disabled_keymaps', '') - if not disabled_keymaps: - return True + if not disabled_keymaps: + return True - if disabled_keymaps == 'all': - return False + if disabled_keymaps == 'all': + return False - return location not in re.split(r'\s*,\s*', disabled_keymaps.strip()) + return location not in re.split(r'\s*,\s*', disabled_keymaps.strip()) class ActionContextHandler(sublime_plugin.EventListener):