summaryrefslogtreecommitdiffstats
path: root/ravi-init-helm.el
diff options
context:
space:
mode:
Diffstat (limited to 'ravi-init-helm.el')
-rw-r--r--ravi-init-helm.el52
1 files changed, 26 insertions, 26 deletions
diff --git a/ravi-init-helm.el b/ravi-init-helm.el
index 2a527a4..700e120 100644
--- a/ravi-init-helm.el
+++ b/ravi-init-helm.el
@@ -53,37 +53,37 @@
(bind-key "<tab>" 'helm-execute-persistent-action helm-map)
(bind-key "H-<tab>" 'helm-select-action helm-map)
- (use-package helm-swoop
- :bind (("M-I" . helm-swoop))
- :commands helm-swoop-from-isearch
- :init
- (progn
- (bind-key "M-i" 'helm-swoop-from-isearch isearch-mode-map)
- )
- :config
- (progn
- (bind-key "M-i" 'helm-multi-swoop-from-all-helm-swoop helm-swoop-map)
-
- ;; Save buffer when helm-multi-swoop-edit complete
- (setq helm-multi-swoop-edit-save t)
-
- ;; If this value is t, split window inside the current window
- ;; (setq helm-swoop-split-with-multiple-windows nil)
-
- ;; Split direcion. 'split-window-vertically or 'split-window-horizontally
- ;; (setq helm-swoop-split-direction 'split-window-vertically)
- )
- :ensure t)
-
(use-package helm-ag
- :ensure t)
-
- (use-package helm-descbinds
- :bind (("C-h b" . helm-descbinds))
:ensure t))
:if ravi/use-helm-instead-of-ido
:diminish helm-mode
:ensure t)
+(use-package helm-swoop
+ :bind (("M-I" . helm-swoop))
+ :commands helm-swoop-from-isearch
+ :init
+ (progn
+ (bind-key "M-i" 'helm-swoop-from-isearch isearch-mode-map)
+ )
+ :config
+ (progn
+ (bind-key "M-i" 'helm-multi-swoop-all-from-helm-swoop helm-swoop-map)
+
+ ;; Save buffer when helm-multi-swoop-edit complete
+ (setq helm-multi-swoop-edit-save t)
+
+ ;; If this value is t, split window inside the current window
+ ;; (setq helm-swoop-split-with-multiple-windows nil)
+
+ ;; Split direcion. 'split-window-vertically or 'split-window-horizontally
+ ;; (setq helm-swoop-split-direction 'split-window-vertically)
+ )
+ :ensure t)
+
+(use-package helm-descbinds
+ :bind (("C-h b" . helm-descbinds))
+ :ensure t)
+
(provide 'ravi-init-helm)
;;; ravi-init-helm.el ends here