Commit f5b4e6c92446

Vincent Demeester <vincent@sbr.pm>
2015-06-02 16:44:47
Update helm-grep-mode-map
1 parent 1314969
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -1196,7 +1196,7 @@
         :ensure t
         :config
         (progn
-          (require 'helm-config)
+          (use-package helm-config)
           (setq helm-idle-delay 0.1
                 helm-input-idle-delay 0.1
                 helm-buffer-max-length 40
@@ -1241,6 +1241,17 @@
       ;; (helm-gtags-mode 1)
     #+END_SRC
 
+
+    #+BEGIN_SRC emacs-lisp
+      (use-package helm-grep
+        :config
+        (progn
+          (define-key helm-grep-mode-map (kbd "<return>")  'helm-grep-mode-jump-other-window)
+          (define-key helm-grep-mode-map (kbd "n")  'helm-grep-mode-jump-other-window-forward)
+          (define-key helm-grep-mode-map (kbd "p")  'helm-grep-mode-jump-other-window-backward)))
+    #+END_SRC
+
+
 *** helmp-make
 
     #+BEGIN_SRC emacs-lisp