We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dd07c2 commit 924db36Copy full SHA for 924db36
navigator.ts
@@ -193,14 +193,18 @@ namespace user_interface_base {
193
}
194
195
case CursorDir.Left: {
196
- if (this.col == 0)
+ if (this.widths[this.row] == 1)
197
+ break
198
+ else if (this.col == 0)
199
this.col = this.widths[this.row] - 1
200
else
201
this.col -= 1
202
break
203
204
205
case CursorDir.Right: {
206
207
208
if (this.col == this.widths[this.row])
209
this.col = 0
210
0 commit comments