Skip to content

Commit 8d9af38

Browse files
committed
✏️ 💥 s/deindent/outdent/g
1 parent 290ce1f commit 8d9af38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

browser/dom/edit.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function indentLines(count = 1) {
7979
press("ArrowRight", { ctrlKey: true });
8080
}
8181
}
82-
export function deindentLines(count = 1) {
82+
export function outdentLines(count = 1) {
8383
for (const _ of range(0, count)) {
8484
press("ArrowLeft", { ctrlKey: true });
8585
}
@@ -116,7 +116,7 @@ export function indentBlocks(count = 1) {
116116
press("ArrowRight", { altKey: true });
117117
}
118118
}
119-
export function deindentBlocks(count = 1) {
119+
export function outdentBlocks(count = 1) {
120120
for (const _ of range(0, count)) {
121121
press("ArrowLeft", { altKey: true });
122122
}

0 commit comments

Comments
 (0)