summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-11-19 00:37:01 -0500
committerKyle Meyer <kyle@kyleam.com>2016-11-19 00:37:01 -0500
commitd3bf3204e14fd843b022baa3467309c69846ec49 (patch)
treef97b6b8d28a58f433e23f2007aa1c1e9d31e769b /init.el
parent8df84d4122bd492c300ff75b06f6fdbf086301ab (diff)
downloademacs.d-d3bf3204e14fd843b022baa3467309c69846ec49.tar.gz
helm: Add binding for dired command
Diffstat (limited to 'init.el')
-rw-r--r--init.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/init.el b/init.el
index e12f18a..183e897 100644
--- a/init.el
+++ b/init.el
@@ -1204,11 +1204,13 @@
:init
(after 'helm-files
(bind-keys :map helm-find-files-map
+ ("C-c ." . km/helm-visit-in-dired)
("C-c b" . km/helm-find-file-below)
("C-c x" . km/helm-ff-org-open-file)
("C-c C-o" . km/helm-display-file)))
(after 'helm-locate
(bind-keys :map helm-generic-files-map
+ ("C-c ." . km/helm-visit-in-dired)
("C-c b" . km/helm-find-file-below)
("C-c x" . km/helm-ff-org-open-file)
("C-c C-o" . km/helm-display-file)))