Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
KaratasFurkan committed Sep 10, 2020
1 parent 0f8cec6 commit 5ff9604
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -1104,15 +1104,24 @@ Change default window dividers to a better built-in alternative.
("r" . helm-recentf)
:map buffers
("b" . helm-buffers-list))
:hook
(helm-major-mode . fk/darken-background)
:config
(helm-mode)
(savehist-mode)
(dolist (regexp '("\\*epc con" "\\*helm" "\\*EGLOT" "\\*straight" "\\*Flymake"
"\\*eldoc" "\\*Compile-Log" "\\*xref" "\\*company"
"\\*aw-posframe" "\\*Warnings" "\\*Backtrace"))
(add-to-list 'helm-boring-buffer-regexp-list regexp))
:hook
(helm-major-mode . fk/darken-background))

;; "Waiting for process to die...done" fix (not sure)
(defun kadir/helm--collect-matches (orig-fun src-list &rest args)
(let ((matches
(cl-loop for src in src-list
collect (helm-compute-matches src))))
(unless (eq matches t) matches)))

(advice-add 'helm--collect-matches :around #'kadir/helm--collect-matches))
#+END_SRC

*** [[#helm-projectile][Helm Projectile-]]
Expand Down

0 comments on commit 5ff9604

Please sign in to comment.