diff options
| author | Craig Jennings <c@cjennings.net> | 2026-04-22 12:35:31 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-04-22 12:35:31 -0500 |
| commit | 14d0323a7482c36eb0b484478a13eba220a20fe8 (patch) | |
| tree | 37927714fc3c91ad890ab9969b9962e6face0e36 | |
| parent | fee4432e406cebeb3e3b2ba9c72dbbf8eabb54a7 (diff) | |
| download | dotemacs-14d0323a7482c36eb0b484478a13eba220a20fe8.tar.gz dotemacs-14d0323a7482c36eb0b484478a13eba220a20fe8.zip | |
chore(org): move org-reveal to F2, freeing F5
F2 is now the universal preview key across modes. markdown-mode already binds F2 to markdown-preview. Org-mode now binds it to org-reveal instead of F5. A follow-up ticket reworks the rest of the F-key block to consolidate the dev-loop keys (compile+run, debug, test, coverage).
| -rw-r--r-- | modules/org-config.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/org-config.el b/modules/org-config.el index 125e2571f..3cd5d358a 100644 --- a/modules/org-config.el +++ b/modules/org-config.el @@ -145,7 +145,7 @@ ("C-c N" . org-narrow-to-subtree) ("C-c >" . cj/org-narrow-forward) ("C-c <" . cj/org-narrow-backwards) - ("<f5>" . org-reveal) + ("<f2>" . org-reveal) ("C-c <ESC>" . widen) ("C-c C-a" . cj/org-appear-toggle)) (:map cj/org-table-map |
