diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2015-02-02 17:14:04 (GMT) |
|---|---|---|
| committer | Ravi R Kiran <aine.marina@gmail.com> | 2015-02-02 17:14:04 (GMT) |
| commit | ebba54241105a78479b3438afcefa39cdbc35323 (patch) | |
| tree | f29944eea371b82cafb7536e55ca5a2e8f13c1a2 /ravi-init-helm.el | |
| parent | 7ecfa4342e27a5c0f7d0690cf1b27a59ba84f0a8 (diff) | |
| download | dotemacs-ebba54241105a78479b3438afcefa39cdbc35323.zip dotemacs-ebba54241105a78479b3438afcefa39cdbc35323.tar.gz dotemacs-ebba54241105a78479b3438afcefa39cdbc35323.tar.bz2 | |
Make helm-swoop and helm-descbinds work before helm is loaded
Diffstat (limited to 'ravi-init-helm.el')
| -rw-r--r-- | ravi-init-helm.el | 52 |
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 |
