2017-02-13 21:12:02 -05:00
|
|
|
|
;;; completion/helm/config.el
|
|
|
|
|
|
2017-02-21 03:46:22 -05:00
|
|
|
|
;; Warning: since I don't use helm, this may be out of date.
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
(defvar +helm-global-prompt "››› "
|
|
|
|
|
"The helm text prompt prefix string is globally replaced with this string.")
|
|
|
|
|
|
2017-02-21 03:46:22 -05:00
|
|
|
|
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; Packages
|
|
|
|
|
;;
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm :demand t
|
2017-02-13 21:12:02 -05:00
|
|
|
|
:init
|
|
|
|
|
(setq helm-quick-update t
|
|
|
|
|
;; Speedier without fuzzy matching
|
|
|
|
|
helm-mode-fuzzy-match nil
|
|
|
|
|
helm-buffers-fuzzy-matching nil
|
|
|
|
|
helm-apropos-fuzzy-match nil
|
|
|
|
|
helm-M-x-fuzzy-match nil
|
|
|
|
|
helm-recentf-fuzzy-match nil
|
|
|
|
|
helm-projectile-fuzzy-match nil
|
|
|
|
|
;; Display extraineous helm UI elements
|
|
|
|
|
helm-display-header-line nil
|
|
|
|
|
helm-ff-auto-update-initial-value nil
|
|
|
|
|
helm-find-files-doc-header nil
|
|
|
|
|
;; Don't override evil-ex's completion
|
|
|
|
|
helm-mode-handle-completion-in-region nil
|
|
|
|
|
helm-candidate-number-limit 50
|
|
|
|
|
;; Don't wrap item cycling
|
|
|
|
|
helm-move-to-line-cycle-in-source t)
|
|
|
|
|
|
|
|
|
|
:config
|
|
|
|
|
(setq projectile-completion-system 'helm)
|
|
|
|
|
|
2017-04-17 02:17:10 -04:00
|
|
|
|
(map! "M-x" #'helm-M-x
|
|
|
|
|
"A-x" #'helm-M-x
|
|
|
|
|
"M-X" #'helm-apropos
|
|
|
|
|
"A-X" #'helm-apropos
|
|
|
|
|
"M-o" #'helm-find-files
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
(:map helm-map
|
2017-04-17 02:17:10 -04:00
|
|
|
|
"C-S-n" #'helm-next-source
|
|
|
|
|
"C-S-p" #'helm-previous-source
|
|
|
|
|
"C-u" #'helm-delete-minibuffer-contents
|
|
|
|
|
"C-w" #'backward-kill-word
|
|
|
|
|
"M-v" #'clipboard-yank
|
|
|
|
|
"C-r" #'evil-paste-from-register ; Evil registers in helm! Glorious!
|
|
|
|
|
"C-b" #'backward-word
|
|
|
|
|
"<left>" #'backward-char
|
|
|
|
|
"<right>" #'forward-char
|
|
|
|
|
"<escape>" #'helm-keyboard-quit
|
|
|
|
|
"ESC" #'helm-keyboard-quit
|
|
|
|
|
[escape] #'helm-keyboard-quit
|
|
|
|
|
"<tab>" #'helm-execute-persistent-action)
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
(:map* helm-generic-files-map
|
2017-04-17 02:17:10 -04:00
|
|
|
|
:e "ESC" #'helm-keyboard-quit))
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
;;; Popup setup
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(set! :popup "\\` ?\\*[hH]elm.*?\\*\\'" :size 14 :regexp t)
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
;;; Helm hacks
|
|
|
|
|
(defconst doom-helm-header-fg (face-attribute 'helm-source-header :foreground))
|
|
|
|
|
;; Shrink source headers if there is only one source
|
2017-04-17 02:17:10 -04:00
|
|
|
|
(add-hook 'helm-after-initialize-hook #'doom*helm-hide-source-header-maybe)
|
2017-02-13 21:12:02 -05:00
|
|
|
|
;; A simpler prompt: see `+helm-global-prompt'
|
2017-04-17 02:17:10 -04:00
|
|
|
|
(advice-add #'helm :filter-args #'doom*helm-replace-prompt)
|
2017-02-13 21:12:02 -05:00
|
|
|
|
;; Hide mode-line in helm windows
|
2017-04-17 02:17:10 -04:00
|
|
|
|
(advice-add #'helm-display-mode-line :override #'doom*helm-hide-header)
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
(require 'helm-mode)
|
|
|
|
|
(helm-mode +1)
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(map! :map helm-mode-map
|
2017-04-17 02:17:10 -04:00
|
|
|
|
[remap find-file] #'helm-find-files
|
|
|
|
|
[remap switch-to-buffer] #'doom/helm-buffers-dwim
|
2017-02-21 03:46:22 -05:00
|
|
|
|
[remap projectile-switch-to-buffer] (λ! (doom/helm-buffers-dwim t))
|
2017-04-17 02:17:10 -04:00
|
|
|
|
[remap recentf] #'helm-recentf
|
|
|
|
|
[remap projectile-recentf] #'helm-projectile-recentf
|
|
|
|
|
[remap projectile-find-file] #'helm-projectile-find-file
|
|
|
|
|
[remap imenu] #'helm-semantic-or-imenu
|
|
|
|
|
[remap bookmark-jump] #'helm-bookmarks
|
|
|
|
|
[remap noop-show-kill-ring] #'helm-show-kill-ring
|
|
|
|
|
[remap projectile-switch-project] #'helm-projectile-switch-project
|
|
|
|
|
[remap projectile-find-file] #'helm-projectile-find-file
|
|
|
|
|
[remap imenu-anywhere] #'helm-imenu-anywhere
|
|
|
|
|
[remap execute-extended-command] #'helm-M-x)
|
2017-02-21 03:46:22 -05:00
|
|
|
|
|
2017-02-13 21:12:02 -05:00
|
|
|
|
(defvar helm-projectile-find-file-map (make-sparse-keymap))
|
|
|
|
|
(require 'helm-projectile)
|
|
|
|
|
(set-keymap-parent helm-projectile-find-file-map helm-map))
|
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm-locate
|
2017-02-13 21:12:02 -05:00
|
|
|
|
:init
|
|
|
|
|
(defvar helm-generic-files-map (make-sparse-keymap)
|
|
|
|
|
"Generic Keymap for files.")
|
|
|
|
|
:config (set-keymap-parent helm-generic-files-map helm-map))
|
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm-buffers
|
2017-02-13 21:12:02 -05:00
|
|
|
|
:commands (helm-buffers-list helm-mini)
|
2017-04-17 02:17:10 -04:00
|
|
|
|
:config (advice-add #'helm-buffer-list :override #'helm*buffer-list))
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm-tags
|
2017-02-13 21:12:02 -05:00
|
|
|
|
:commands (helm-tags-get-tag-file helm-etags-select))
|
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm-bookmark
|
2017-02-13 21:12:02 -05:00
|
|
|
|
:commands (helm-bookmarks helm-filtered-bookmarks)
|
|
|
|
|
:config (setq-default helm-bookmark-show-location t))
|
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm-files
|
2017-02-13 21:12:02 -05:00
|
|
|
|
:commands (helm-browse-project helm-find helm-find-files helm-for-files helm-multi-files helm-recentf)
|
|
|
|
|
:config
|
|
|
|
|
(setq helm-boring-file-regexp-list
|
|
|
|
|
(append (list "\\.projects$" "\\.DS_Store$")
|
|
|
|
|
helm-boring-file-regexp-list))
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(map! :map helm-find-files-map
|
2017-04-17 02:17:10 -04:00
|
|
|
|
"C-w" #'helm-find-files-up-one-level
|
|
|
|
|
"TAB" #'helm-execute-persistent-action))
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm-ag
|
2017-02-13 21:12:02 -05:00
|
|
|
|
:commands (helm-ag
|
|
|
|
|
helm-ag-mode
|
|
|
|
|
helm-do-ag
|
|
|
|
|
helm-do-ag-this-file
|
|
|
|
|
helm-do-ag-project-root
|
|
|
|
|
helm-do-ag-buffers
|
|
|
|
|
helm-ag-project-root
|
|
|
|
|
helm-ag-pop-stack
|
|
|
|
|
helm-ag-buffers
|
|
|
|
|
helm-ag-clear-stack)
|
|
|
|
|
:config
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(map! (:map helm-ag-map
|
2017-04-17 02:17:10 -04:00
|
|
|
|
"<backtab>" #'helm-ag-edit)
|
2017-02-13 21:12:02 -05:00
|
|
|
|
(:map helm-ag-edit-map
|
2017-04-17 02:17:10 -04:00
|
|
|
|
"<escape>" #'helm-ag--edit-abort
|
|
|
|
|
"C-c C-c" #'helm-ag--edit-commit
|
|
|
|
|
:n "zx" #'helm-ag--edit-abort)))
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm-css-scss ; https://github.com/ShingoFukuyama/helm-css-scss
|
2017-02-13 21:12:02 -05:00
|
|
|
|
:commands (helm-css-scss
|
|
|
|
|
helm-css-scss-multi
|
|
|
|
|
helm-css-scss-insert-close-comment)
|
|
|
|
|
:config
|
2017-04-17 02:17:10 -04:00
|
|
|
|
(setq helm-css-scss-split-direction #'split-window-vertically
|
2017-02-13 21:12:02 -05:00
|
|
|
|
helm-css-scss-split-with-multiple-windows t))
|
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm-swoop ; https://github.com/ShingoFukuyama/helm-swoop
|
2017-02-13 21:12:02 -05:00
|
|
|
|
:commands (helm-swoop helm-multi-swoop helm-multi-swoop-all)
|
|
|
|
|
:config
|
|
|
|
|
(setq helm-swoop-use-line-number-face t
|
|
|
|
|
helm-swoop-candidate-number-limit 200
|
|
|
|
|
helm-swoop-speed-or-color t
|
|
|
|
|
helm-swoop-pre-input-function (lambda () "")))
|
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(def-package! helm-describe-modes :commands helm-describe-modes)
|
|
|
|
|
(def-package! helm-ring :commands helm-show-kill-ring)
|
|
|
|
|
(def-package! helm-semantic :commands helm-semantic-or-imenu)
|
|
|
|
|
(def-package! helm-elisp :commands helm-apropos)
|
|
|
|
|
(def-package! helm-command :commands helm-M-x)
|
2017-02-13 21:12:02 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; Popup hacks
|
|
|
|
|
;;
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(after! helm
|
2017-02-13 21:12:02 -05:00
|
|
|
|
;; Helm tries to clean up after itself, but shackle has already done this.
|
|
|
|
|
;; This fixes that. To reproduce, add a helm rule in `shackle-rules', open two
|
|
|
|
|
;; splits side-by-side, move to the buffer on the right and invoke helm. It
|
|
|
|
|
;; will close all but the left-most buffer.
|
|
|
|
|
(setq-default helm-reuse-last-window-split-state t
|
|
|
|
|
helm-split-window-in-side-p t))
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(after! helm-swoop
|
2017-02-13 21:12:02 -05:00
|
|
|
|
(setq helm-swoop-split-window-function (lambda (b) (doom-popup-buffer b))))
|
|
|
|
|
|
2017-04-17 02:17:10 -04:00
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
|
(after! helm-ag
|
2017-02-13 21:12:02 -05:00
|
|
|
|
;; This prevents helm-ag from switching between windows and buffers.
|
|
|
|
|
(defadvice helm-ag--edit-abort (around helm-ag-edit-abort-popup-compat activate)
|
2017-04-17 02:17:10 -04:00
|
|
|
|
(cl-letf (((symbol-function 'select-window) #'ignore)) ad-do-it)
|
2017-02-13 21:12:02 -05:00
|
|
|
|
(doom/popup-close nil t))
|
|
|
|
|
|
|
|
|
|
(defadvice helm-ag--edit-commit (around helm-ag-edit-commit-popup-compat activate)
|
2017-04-17 02:17:10 -04:00
|
|
|
|
(cl-letf (((symbol-function 'select-window) #'ignore)) ad-do-it)
|
2017-02-13 21:12:02 -05:00
|
|
|
|
(doom/popup-close nil t))
|
|
|
|
|
|
|
|
|
|
(defadvice helm-ag--edit (around helm-ag-edit-popup-compat activate)
|
2017-04-17 02:17:10 -04:00
|
|
|
|
(cl-letf (((symbol-function 'other-window) #'ignore)
|
|
|
|
|
((symbol-function 'switch-to-buffer) #'doom-popup-buffer))
|
2017-02-13 21:12:02 -05:00
|
|
|
|
ad-do-it
|
|
|
|
|
(with-current-buffer (get-buffer "*helm-ag-edit*")
|
|
|
|
|
(use-local-map helm-ag-edit-map)))))
|
|
|
|
|
|