Do not filter short kill ring entries in helm selection

I sometime kill single characters for usage in query-replace, and not having
them available in the kill ring is hampering.
This commit is contained in:
Daniel - 2022-01-30 21:06:43 +01:00
parent dccac3982f
commit 2b02da2eca
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 3 additions and 1 deletions

View File

@ -2189,7 +2189,9 @@
helm-follow-mode-persistent t
helm-buffer-details-flag t
helm-buffer-skip-remote-checking t
helm-mode-no-completion-in-region-in-modes '(eshell-mode))
helm-mode-no-completion-in-region-in-modes '(eshell-mode)
helm-kill-ring-threshold 0 ; include all yanks in the kill ring
)
:config (progn
(require 'helm-config)
(require 'helm-mode)