about summary refs log tree commit diff
path: root/init/bindings.el
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-03-30T10·16+0200
committerVincent Ambo <tazjin@gmail.com>2018-03-30T10·16+0200
commitec3e2da5061f3fd0802c38ae681f3088c21db59f (patch)
treec3e3bb2f3a467862c19fa6ff1b6aeec83a562c80 /init/bindings.el
parentace425793a5d4739400533e3512417c5b5ce0d33 (diff)
feat(bindings): Bind project-find-file & helm-occur globally
Diffstat (limited to 'init/bindings.el')
-rw-r--r--init/bindings.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/init/bindings.el b/init/bindings.el
index edb1b9c0ab..b8af7751f1 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)