X-Git-Url: http://git.scottworley.com/vopamoi/blobdiff_plain/68d693148efba8e2ff62bee1b5780d47f4920029..109d4bc26db6a0f5a6b6afd72446827d25fc334e:/vopamoi.ts diff --git a/vopamoi.ts b/vopamoi.ts index f13e579..302307f 100644 --- a/vopamoi.ts +++ b/vopamoi.ts @@ -441,7 +441,7 @@ function BrowserUI() { task instanceof HTMLElement && task.focus(); }, - moveCursor: function (offset: number): boolean { + moveCursorVertically: function (offset: number): boolean { const active = this.currentTask(); if (!active) return false; const dest = this.visibleTaskAtOffset(active, offset); @@ -517,7 +517,7 @@ function BrowserUI() { if (newState === oldState) return; const createTimestamp = task.getAttribute("data-created")!; if (currentViewState !== "all" || newState == "deleted") { - this.moveCursor(1) || this.moveCursor(-1); + this.moveCursorVertically(1) || this.moveCursorVertically(-1); } return ui.setState(createTimestamp, newState, oldState); }, @@ -643,8 +643,8 @@ function handleKey(event: any) { if (event.key == "e") return window.scrollBy(0, (inputCount ?? 1) * scrollIncrement); if (event.key == "y") return window.scrollBy(0, (inputCount ?? 1) * -scrollIncrement); } else { - if (event.key == "j") return browserUI.moveCursor(inputCount ?? 1); - if (event.key == "k") return browserUI.moveCursor(-(inputCount ?? 1)); + if (event.key == "j") return browserUI.moveCursorVertically(inputCount ?? 1); + if (event.key == "k") return browserUI.moveCursorVertically(-(inputCount ?? 1)); if (event.key == "J") return browserUI.moveTask(inputCount ?? 1); if (event.key == "K") return browserUI.moveTask(-(inputCount ?? 1)); if (event.key == "G") return browserUI.jumpCursor(inputCount ?? MAX_SAFE_INTEGER);