From ec3e2da5061f3fd0802c38ae681f3088c21db59f Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 30 Mar 2018 12:16:00 +0200 Subject: [PATCH] feat(bindings): Bind project-find-file & helm-occur globally --- init/bindings.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init/bindings.el b/init/bindings.el index edb1b9c0a..b8af7751f 100644 --- a/init/bindings.el +++ b/init/bindings.el @@ -54,4 +54,10 @@ ;; Open Fefes Blog (global-set-key (kbd "C-c C-f") 'fefes-blog) +;; Open a file in project: +(global-set-key (kbd "C-c f") 'project-find-file) + +;; Interactively filter lines in current buffer: +(global-set-key (kbd "C-c o") 'helm-occur) + (provide 'bindings)