Minor refactors & reformatting

This commit is contained in:
Henrik Lissner 2020-03-27 21:39:27 -04:00
parent 86194e2c53
commit 83b6f74d11
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
5 changed files with 16 additions and 12 deletions

View file

@ -93,9 +93,10 @@ be negative.")
;; (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'
(if (< emacs-major-version 27)
(push (if fuzzy 'helm-flex 'helm) completion-styles)
(push (if fuzzy 'flex 'helm) completion-styles)))
(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)