From 9ad8bfa52496f0d2a15166ba272ab05a3ce64153 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sun, 9 Oct 2022 23:53:00 -0700 Subject: [PATCH] find-file/dired-jump bindings --- thoom-emacs/ThoomEmacs.org | 4 ++++ thoom-emacs/init.el | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/thoom-emacs/ThoomEmacs.org b/thoom-emacs/ThoomEmacs.org index d3830d5..9e59c28 100644 --- a/thoom-emacs/ThoomEmacs.org +++ b/thoom-emacs/ThoomEmacs.org @@ -192,6 +192,10 @@ Set a location for the custom file so it doesn't pollute this file. ("C-c b n" . next-buffer) ("C-c b C-c" . server-edit) + ;; File management + ("C-c f f" . find-file) + ("C-c f j" . dired-jump) + ;; TODO - C-c g p for open project in magit ("C-o" . pop-global-mark) diff --git a/thoom-emacs/init.el b/thoom-emacs/init.el index 436e0f7..b635e3b 100644 --- a/thoom-emacs/init.el +++ b/thoom-emacs/init.el @@ -146,6 +146,10 @@ ("C-c b n" . next-buffer) ("C-c b C-c" . server-edit) + ;; File management + ("C-c f f" . find-file) + ("C-c f j" . dired-jump) + ;; TODO - C-c g p for open project in magit ("C-o" . pop-global-mark)