From b44dfb35f55d218174ec29266e246ae647871f1e Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sat, 15 May 2021 20:47:10 -0400 Subject: [PATCH] bind "C-c f p" to find-file-at-point --- .emacs.d/init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 8510489..47c254a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -559,6 +559,7 @@ Make N (default: 1) copies of the current line or region." (global-set-key (kbd "C-c f .") #'find-file) (global-set-key (kbd "C-c f d") #'find-name-dired) (global-set-key (kbd "C-c f l") #'find-library) +(global-set-key (kbd "C-c f p") #'find-file-at-point) ;; frames (global-set-key (kbd "C-c F m") #'make-frame-command) -- 2.20.1