#241 Update keyboard shortcuts for creating new note and going home to use ALT instea...
authorAdam Dullage <redacted>
Fri, 17 Jan 2025 12:55:06 +0000 (12:55 +0000)
committerAdam Dullage <redacted>
Fri, 17 Jan 2025 12:55:06 +0000 (12:55 +0000)
client/App.vue

index 0f30ceb9f198a6743020f55027ced6899bdf9811..b2c4a3a5df1b7886412dab146e17d206de911137 100644 (file)
@@ -48,16 +48,16 @@ Mousetrap.bind("/", () => {
   }\r
 });\r
 \r
-// 'CTRL/CMD + SHIFT + N' to create new note\r
-Mousetrap.bindGlobal("mod+shift+n", () => {\r
+// 'CTRL/CMD + ALT + N' to create new note\r
+Mousetrap.bindGlobal("mod+alt+n", () => {\r
   if (route.name !== "login") {\r
     router.push({ name: "new" });\r
     return false;\r
   }\r
 });\r
 \r
-// 'CTRL/CMD + SHIFT + H' to go to home\r
-Mousetrap.bindGlobal("mod+shift+h", () => {\r
+// 'CTRL/CMD + ALT + H' to go to home\r
+Mousetrap.bindGlobal("mod+alt+h", () => {\r
   if (route.name !== "login") {\r
     router.push({ name: "home" });\r
     return false;\r
git clone https://git.99rst.org/PROJECT