From 8d9af38bfe034de0c2422b3c65cec7eef2c68a2e Mon Sep 17 00:00:00 2001 From: takker99 <37929109+takker99@users.noreply.github.com> Date: Mon, 25 Apr 2022 17:07:50 +0900 Subject: [PATCH] :pencil2: :boom: s/deindent/outdent/g --- browser/dom/edit.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser/dom/edit.ts b/browser/dom/edit.ts index e423736..65fa1e3 100644 --- a/browser/dom/edit.ts +++ b/browser/dom/edit.ts @@ -79,7 +79,7 @@ export function indentLines(count = 1) { press("ArrowRight", { ctrlKey: true }); } } -export function deindentLines(count = 1) { +export function outdentLines(count = 1) { for (const _ of range(0, count)) { press("ArrowLeft", { ctrlKey: true }); } @@ -116,7 +116,7 @@ export function indentBlocks(count = 1) { press("ArrowRight", { altKey: true }); } } -export function deindentBlocks(count = 1) { +export function outdentBlocks(count = 1) { for (const _ of range(0, count)) { press("ArrowLeft", { altKey: true }); }