File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/test-case-component/src/helpers Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import type {
9
9
import type { DecorationItem } from "shiki"
10
10
import { getMarkDecorations } from "./getMarkDecorations" ;
11
11
import { getIdeFlashDecorations } from "./getIdeFlashDecorations" ;
12
- import { getSlections } from "./getSelections" ;
12
+ import { getSelections } from "./getSelections" ;
13
13
import { getSourceMarks } from "./getSourceMarks" ;
14
14
import { getThatMarks } from "./getThatMarks" ;
15
15
@@ -34,7 +34,7 @@ export function createDecorations(
34
34
35
35
const markDecorations = getMarkDecorations ( { marks, lines } )
36
36
const ideFlashDecorations = getIdeFlashDecorations ( { lines, ide } )
37
- const selectionRanges = getSlections ( { selections } )
37
+ const selectionRanges = getSelections ( { selections } )
38
38
const sourceMarks_ = getSourceMarks ( { sourceMark } )
39
39
40
40
decorations . push ( markDecorations ) ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import type { SelectionPlainObject } from "@cursorless/common";
2
2
import type { DecorationItem } from "shiki" ;
3
3
import { getDecorationClass } from "./classesMap" ;
4
4
5
- function getSlections (
5
+ function getSelections (
6
6
{
7
7
selections,
8
8
} : {
@@ -29,4 +29,4 @@ function getSlections(
29
29
return decorations
30
30
}
31
31
32
- export { getSlections }
32
+ export { getSelections }
You can’t perform that action at this time.
0 commit comments