]> git.scottworley.com Git - vopamoi/blobdiff - vopamoi.ts
"G" to Go to the count-prefixed line. eg: "1G" to go to the top
[vopamoi] / vopamoi.ts
index 3ccc5625e085fa44e6cde1fb2daef9cc515fd37f..7d2f3ee425c60665455ac5eb1e413ebd1ed32ce3 100644 (file)
@@ -378,6 +378,13 @@ function BrowserUI() {
       return valid_cursor;
     },
 
+    jumpCursor: function (position: number) {
+      const first = this.firstVisibleTask();
+      if (!first) return;
+      const dest = this.visibleTaskAtOffset(first, position - 1);
+      if (dest instanceof HTMLElement) dest.focus();
+    },
+
     makeTopPriority: function (task: Element | null = null) {
       if (!task) task = document.activeElement;
       if (!task) return;
@@ -492,6 +499,7 @@ var inputState = InputState.Root;
 var inputCount: number | null = null;
 
 function handleKey(event: any) {
+  if (["Alt", "Control", "Meta", "Shift"].includes(event.key)) return;
   if (event.target.tagName === "INPUT") {
     if (event.target.id === "taskName") {
       if (event.key == "Enter") return browserUI.addTask(event);
@@ -511,8 +519,9 @@ function handleKey(event: any) {
       try {
         if (event.key == "j") return browserUI.moveCursor(inputCount ?? 1);
         if (event.key == "k") return browserUI.moveCursor(-(inputCount ?? 1));
-        if (event.key == "J") return browserUI.moveTask(1);
-        if (event.key == "K") return browserUI.moveTask(-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);
         if (event.key == "T") return browserUI.makeTopPriority();
         if (event.key == "n") return browserUI.focusTaskNameInput(event);
         if (event.key == "c") return browserUI.setState("cancelled");