From fdb036dd735acdf7061024faa8888c0768b55186 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Sun, 25 Jul 2021 00:26:08 +0200 Subject: [PATCH] Added action duplicate (#34) * added action for line duplication * updated duplicate actions --- src/actions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/actions.py b/src/actions.py index 34939577..25e943fc 100644 --- a/src/actions.py +++ b/src/actions.py @@ -23,6 +23,8 @@ "dedent": "outdentLines", "drink": "editNewLineAbove", "drop": "insertEmptyLineAbove", + "dupe": "copyLinesDown", + "dupe up": "copyLinesUp", "find all": "findInFiles", "float": "insertEmptyLineBelow", "fold": "fold",