From 2b02da2eca0aa509ecc5747f0942d625618145d6 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 30 Jan 2022 21:06:43 +0100 Subject: [PATCH] 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. --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index bf37396..926fcca 100644 --- a/init.el +++ b/init.el @@ -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)