summaryrefslogtreecommitdiff
path: root/modules/ui-navigation.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2024-04-23 22:47:31 -0500
committerCraig Jennings <c@cjennings.net>2024-04-23 22:47:31 -0500
commit4345ae1abbb06d9f7cb939ea4bc82bb6e2b0e941 (patch)
tree814e1aacf1121e9489b8f46643d86ff68d277fed /modules/ui-navigation.el
parentf2d55d11b375535fa7ebdaf526f674eb99ab7884 (diff)
geiser support and org refactoring
- add Geiser-guile for Emacs Guile Support - combine org-appearance-config with org-config - move jump to keyboard commands to the keybindings file - assign winner-undo to F5 - remove undefined compilation setting
Diffstat (limited to 'modules/ui-navigation.el')
-rw-r--r--modules/ui-navigation.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/ui-navigation.el b/modules/ui-navigation.el
index e9f3cdc5..49c9f631 100644
--- a/modules/ui-navigation.el
+++ b/modules/ui-navigation.el
@@ -116,7 +116,8 @@ This function won't work with more than one split window."
(buffer-files-list
(delq nil (mapcar (lambda (buf)
(when (buffer-file-name buf)
- (expand-file-name (buffer-file-name buf)))) (buffer-list)))))
+ (expand-file-name (buffer-file-name buf))))
+ (buffer-list)))))
(mapc
(lambda (buf-file)
(setq recently-killed-list
@@ -134,7 +135,7 @@ This function won't work with more than one split window."
(use-package winner-mode
:ensure nil ;; built-in
:defer .5
- :bind ("C-z C-z" . winner-undo))
+ :bind ("<f5>" . winner-undo))
(provide 'ui-navigation)
;;; ui-navigation.el ends here