Skip to content

Commit 3f8bbe8

Browse files
committed
fix: invalid property name
1 parent 27ee06c commit 3f8bbe8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

builtin/coordinator/compact.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export function compact(
9999
],
100100
list: [
101101
divider[DI.Left],
102-
divider[DI.Horizonal],
102+
divider[DI.Horizontal],
103103
divider[DI.Right],
104104
divider[DI.Vertical],
105105
divider[DI.Bottom],
@@ -169,7 +169,7 @@ export function compact(
169169
],
170170
list: [
171171
divider[DI.Left],
172-
divider[DI.Horizonal],
172+
divider[DI.Horizontal],
173173
divider[DI.Right],
174174
border[BI.Right],
175175
border[BI.BottomRight],

builtin/coordinator/modern.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export function modern(options: Options = {}): Coordinator {
9696
],
9797
list: [
9898
divider[DI.Left],
99-
divider[DI.Horizonal],
99+
divider[DI.Horizontal],
100100
divider[DI.Right],
101101
border[BI.Right],
102102
border[BI.BottomRight],
@@ -166,7 +166,7 @@ export function modern(options: Options = {}): Coordinator {
166166
],
167167
list: [
168168
divider[DI.Left],
169-
divider[DI.Horizonal],
169+
divider[DI.Horizontal],
170170
divider[DI.Right],
171171
border[BI.Right],
172172
border[BI.BottomRight],

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"@std/path": "jsr:@std/path@^1.0.8",
124124
"@std/streams": "jsr:@std/streams@^1.0.8",
125125
"@std/testing": "jsr:@std/testing@^1.0.4",
126-
"@vim-fall/core": "jsr:@vim-fall/core@^0.1.0-pre.0",
126+
"@vim-fall/core": "jsr:@vim-fall/core@^0.1.1",
127127
"fzf": "npm:fzf@^0.5.2"
128128
}
129129
}

util/testutil.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export function renderTheme(theme: Theme): string[] {
116116
return theme.divider[DI.Right];
117117
}
118118
if (y === 2 && x > 0 && x < halfWidth - 1) {
119-
return theme.divider[DI.Horizonal];
119+
return theme.divider[DI.Horizontal];
120120
}
121121
if (x === 16 && y === 0) {
122122
return theme.divider[DI.Top];

0 commit comments

Comments
 (0)