The rewrite for Doom's CLI is taking a while, so I've backported a few important changes in order to ease the transition and fix a couple bugs sooner. Fixes #2802, #2737, #2386 The big highlights are: - Fix #2802: We now update recipe repos *before* updating/installing any new packages. No more "Could not find package X in recipe repositories". - Fix #2737: An edge case where straight couldn't reach a pinned commit (particularly with agda). - Doom is now smarter about what option it recommends when straight prompts you to make a choice. - Introduces a new init path for Doom. The old way: - Launch in "minimal" CLI mode in non-interactive sessions - Launch a "full" interactive mode otherwise. The new way - Launch in "minimal" CLI mode *only* for bin/doom - Launch is a simple mode for non-interactive sessions that still need access to your interactive config (like async org export/babel). - Launch a "full" interactive mode otherwise. This should fix compatibility issues with plugins that use the async.el library or spawn child Emacs processes to fake parallelization (like org's async export and babel functionality). - Your private init.el is now loaded more reliably when running any bin/doom command. This gives you an opportunity to configure its settings. - Added doom-first-{input,buffer,file}-hook hooks, which we use to queue deferred activation of a number of packages. Users can remove these modes from these hooks; altogether preventing them from loading, rather than waiting for them to load to then disable them, e.g. (after! smartparens (smartparens-global-mode -1)) -> (remove-hook 'doom-first-buffer #'smartparens-global-mode) Hooks added to doom-first-*-hook variables will be removed once they run. This should also indirectly fix #2386, by preventing interactive modes from running in non-interactive session. - Added `doom/bump-*` commands to make bumping modules and packages easier, and `doom/bumpify-*` commands for converting package! statements into user/repo@sha1hash format for bump commits. - straight.el is now commit-pinned, like all other packages. We also more reliably install straight.el by cloning it ourselves, rather than relying on its bootstrap.el. This should prevent infinite "straight has diverged from master" prompts whenever we change branches (though, you might have to put up with it one more after this update -- see #2937 for workaround). All the other minor changes: - Moved core/autoload/cli.el to core/autoload/process.el - The package manager will log attempts to check out pinned commits - If package state is incomplete while rebuilding packages, emit a simpler error message instead of an obscure one! - Added -u switch to 'doom sync' to make it run 'doom update' afterwards - Added -p switch to 'doom sync' to make it run 'doom purge' afterwards - Replace doom-modules function with doom-modules-list - The `with-plist!` macro was removed, since `cl-destructuring-bind` already serves that purpose well enough. - core/autoload/packages.el was moved into core-packages.el - bin/doom will no longer die if DOOMDIR or DOOMLOCALDIR don't have a trailing slash - Introduces doom-debug-variables; a list of variables to toggle on doom/toggle-debug-mode. - The sandbox has been updated to reflect the above changes, also: 1. Child instances will no longer inherit the process environment of the host instance, 2. It will no longer produce an auto-save-list directory in ~/.emacs.d
186 lines
6.7 KiB
EmacsLisp
186 lines
6.7 KiB
EmacsLisp
;;; completion/helm/config.el -*- lexical-binding: t; -*-
|
|
|
|
;; Posframe (requires +childframe)
|
|
(defvar +helm-posframe-handler #'+helm-poshandler-frame-center-near-bottom-fn
|
|
"The function that determines the location of the childframe. It should return
|
|
a cons cell representing the X and Y coordinates. See
|
|
`posframe-poshandler-frame-center' as a reference.")
|
|
|
|
(defvar +helm-posframe-text-scale 1
|
|
"The text-scale to use in the helm childframe. Set to nil for no scaling. Can
|
|
be negative.")
|
|
|
|
(defvar +helm-posframe-parameters
|
|
'((internal-border-width . 8)
|
|
(width . 0.5)
|
|
(height . 0.35)
|
|
(min-width . 80)
|
|
(min-height . 16))
|
|
"TODO")
|
|
|
|
|
|
;;
|
|
;;; Packages
|
|
|
|
(use-package! helm-mode
|
|
:hook (doom-first-input . helm-mode)
|
|
:init
|
|
(map! [remap apropos] #'helm-apropos
|
|
[remap find-library] #'helm-locate-library
|
|
[remap bookmark-jump] #'helm-bookmarks
|
|
[remap execute-extended-command] #'helm-M-x
|
|
[remap find-file] #'helm-find-files
|
|
[remap locate] #'helm-locate
|
|
[remap imenu] #'helm-semantic-or-imenu
|
|
[remap noop-show-kill-ring] #'helm-show-kill-ring
|
|
[remap persp-switch-to-buffer] #'+helm/workspace-mini
|
|
[remap switch-to-buffer] #'helm-buffers-list
|
|
[remap projectile-find-file] #'+helm/projectile-find-file
|
|
[remap projectile-recentf] #'helm-projectile-recentf
|
|
[remap projectile-switch-project] #'helm-projectile-switch-project
|
|
[remap projectile-switch-to-buffer] #'helm-projectile-switch-to-buffer
|
|
[remap recentf-open-files] #'helm-recentf
|
|
[remap yank-pop] #'helm-show-kill-ring)
|
|
:config
|
|
;; helm is too heavy for `find-file-at-point'
|
|
(add-to-list 'helm-completing-read-handlers-alist (cons #'find-file-at-point nil)))
|
|
|
|
|
|
(use-package! helm
|
|
:after helm-mode
|
|
:preface
|
|
(setq helm-candidate-number-limit 50
|
|
;; Remove extraineous helm UI elements
|
|
helm-display-header-line nil
|
|
helm-mode-line-string nil
|
|
helm-ff-auto-update-initial-value nil
|
|
helm-find-files-doc-header nil
|
|
;; Default helm window sizes
|
|
helm-display-buffer-default-width nil
|
|
helm-display-buffer-default-height 0.25
|
|
;; When calling `helm-semantic-or-imenu', don't immediately jump to
|
|
;; symbol at point
|
|
helm-imenu-execute-action-at-once-if-one nil
|
|
;; disable special behavior for left/right, M-left/right keys.
|
|
helm-ff-lynx-style-map nil)
|
|
|
|
(when (featurep! :editor evil +everywhere)
|
|
(setq helm-default-prompt-display-function #'+helm--set-prompt-display))
|
|
|
|
:init
|
|
(when (featurep! +childframe)
|
|
;; If this is set to 'iconify-top-level then Emacs will be minimized upon
|
|
;; helm completion.
|
|
(setq iconify-child-frame 'make-invisible)
|
|
(setq helm-display-function #'+helm-posframe-display-fn))
|
|
|
|
(let ((fuzzy (featurep! +fuzzy)))
|
|
(setq helm-apropos-fuzzy-match fuzzy
|
|
helm-bookmark-show-location fuzzy
|
|
helm-buffers-fuzzy-matching fuzzy
|
|
helm-ff-fuzzy-matching fuzzy
|
|
helm-file-cache-fuzzy-match fuzzy
|
|
helm-flx-for-helm-locate fuzzy
|
|
helm-imenu-fuzzy-match fuzzy
|
|
helm-lisp-fuzzy-completion fuzzy
|
|
helm-locate-fuzzy-match fuzzy
|
|
helm-projectile-fuzzy-match fuzzy
|
|
helm-recentf-fuzzy-match fuzzy
|
|
helm-semantic-fuzzy-match fuzzy)
|
|
;; Make sure that we have helm-multi-matching or fuzzy matching,
|
|
;; (as prescribed by the fuzzy flag) also in the following cases:
|
|
;; - helmized commands that use `completion-at-point' and similar functions
|
|
;; - native commands that fall back to `completion-styles' like `helm-M-x'
|
|
(push (if EMACS27+
|
|
(if fuzzy 'flex 'helm)
|
|
(if fuzzy 'helm-flex 'helm))
|
|
completion-styles))
|
|
|
|
:config
|
|
(set-popup-rule! "^\\*helm" :vslot -100 :size 0.22 :ttl nil)
|
|
|
|
;; Hide the modeline in helm windows as it serves little purpose.
|
|
(defun +helm--hide-mode-line (&rest _)
|
|
(with-current-buffer (helm-buffer-get)
|
|
(unless helm-mode-line-string
|
|
(hide-mode-line-mode +1))))
|
|
(add-hook 'helm-after-initialize-hook #'+helm--hide-mode-line)
|
|
(advice-add #'helm-display-mode-line :override #'+helm--hide-mode-line)
|
|
(advice-add #'helm-ag-show-status-default-mode-line :override #'ignore)
|
|
|
|
;; Hide minibuffer if `helm-echo-input-in-header-line'
|
|
(add-hook 'helm-minibuffer-set-up-hook #'helm-hide-minibuffer-maybe)
|
|
|
|
;; Use helpful instead of describe-* to display documentation
|
|
(dolist (fn '(helm-describe-variable helm-describe-function))
|
|
(advice-add fn :around #'doom-use-helpful-a)))
|
|
|
|
(use-package! helm-flx
|
|
:when (featurep! +fuzzy)
|
|
:hook (helm-mode . helm-flx-mode)
|
|
:config (helm-flx-mode +1))
|
|
|
|
|
|
(after! helm-rg
|
|
(setq helm-rg-display-buffer-normal-method #'pop-to-buffer)
|
|
(set-popup-rule! "^helm-rg-" :ttl nil :select t :size 0.45)
|
|
(map! :map helm-rg-map
|
|
"C-c C-e" #'helm-rg--bounce)
|
|
(map! :map helm-rg--bounce-mode-map
|
|
"q" #'kill-current-buffer
|
|
"C-c C-c" (λ! (helm-rg--bounce-dump) (kill-current-buffer))
|
|
"C-x C-c" #'helm-rg--bounce-dump-current-file
|
|
"C-c C-k" #'kill-current-buffer))
|
|
|
|
|
|
;;;###package helm-bookmark
|
|
(setq helm-bookmark-show-location t)
|
|
|
|
|
|
(after! helm-files
|
|
(setq helm-boring-file-regexp-list
|
|
(append (list "\\.projects$" "\\.DS_Store$")
|
|
helm-boring-file-regexp-list)))
|
|
|
|
|
|
(defvar helm-generic-files-map (make-sparse-keymap))
|
|
(after! helm-locate
|
|
(when (and IS-MAC
|
|
(null helm-locate-command)
|
|
(executable-find "mdfind"))
|
|
(setq helm-locate-command "mdfind -name %s"))
|
|
(set-keymap-parent helm-generic-files-map helm-map))
|
|
|
|
|
|
(use-package! helm-org
|
|
:when (featurep! :lang org)
|
|
:defer t
|
|
:init
|
|
(after! helm-mode
|
|
(pushnew! helm-completing-read-handlers-alist
|
|
'(org-capture . helm-org-completing-read-tags)
|
|
'(org-set-tags . helm-org-completing-read-tags))))
|
|
|
|
|
|
(use-package! helm-projectile
|
|
:commands (helm-projectile-find-file
|
|
helm-projectile-recentf
|
|
helm-projectile-switch-project
|
|
helm-projectile-switch-to-buffer)
|
|
:init
|
|
(setq projectile-completion-system 'helm)
|
|
(defvar helm-projectile-find-file-map (make-sparse-keymap))
|
|
:config
|
|
(set-keymap-parent helm-projectile-find-file-map helm-map))
|
|
|
|
|
|
(setq ivy-height 20) ; for `swiper-isearch'
|
|
(after! swiper-helm
|
|
(setq swiper-helm-display-function
|
|
(lambda (buf &optional _resume) (pop-to-buffer buf)))
|
|
(global-set-key [remap swiper] #'swiper-helm)
|
|
(add-to-list 'swiper-font-lock-exclude #'+doom-dashboard-mode nil #'eq))
|
|
|
|
|
|
(use-package! helm-descbinds
|
|
:hook (helm-mode . helm-descbinds-mode))
|