We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b3cd89 + 3847267 commit 7ac3d35Copy full SHA for 7ac3d35
src/clooj/core.clj
@@ -531,7 +531,11 @@
531
(add-menu menu-bar "Search"
532
["Find" "cmd F" #(start-find doc)]
533
["Find next" "cmd G" #(highlight-step doc false)]
534
- ["Find prev" "cmd shift G" #(highlight-step doc true)])))
+ ["Find prev" "cmd shift G" #(highlight-step doc true)])
535
+ (add-menu menu-bar "Window"
536
+ ["Move to REPL" "alt R" #(.requestFocusInWindow (:repl-in-text-area doc))]
537
+ ["Move to Editor" "alt E" #(.requestFocusInWindow (:doc-text-area doc))]
538
+ ["Move to Project Tree" "alt P" #(.requestFocusInWindow (:docs-tree doc))])))
539
540
;; startup
541
0 commit comments