From 1d1b2a4d4f391698b5e27eb732619b66cdb412b8 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Tue, 6 Sep 2022 15:23:18 -0400 Subject: [PATCH] tweak helm separator for multi-select so it works by default with org tags ; this could be an issue with other things ; this should really be a function --- org/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/org/init.el b/org/init.el index 3a4b311..fd0c437 100644 --- a/org/init.el +++ b/org/init.el @@ -111,6 +111,8 @@ (load "~/.emacs.d.profiles/common/helm-org.el") (require 'helm-org) (helm-mode 1) +; fix helm multi-tag select (needs custom seprator. default is comma +(setq helm-crm-default-separator ":") (add-to-list 'helm-completing-read-handlers-alist '(org-capture . helm-org-completing-read-tags)) (add-to-list 'helm-completing-read-handlers-alist '(org-set-tags . helm-org-completing-read-tags)) (add-to-list 'helm-completing-read-handlers-alist '(org-set-tags-command . helm-org-completing-read-tags))