branch: elpa/aidermacs commit 2039bd9a0c5166f9dc1aeb73834f1a8d7c3ea7e9 Author: Kang Tu <kang...@apple.com> Commit: Kang Tu (aider) <kang...@apple.com>
feat: add fuzzy matching support to aider-helm-read-string function --- helm-aider.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm-aider.el b/helm-aider.el index ba8fa106d2..d5953bcbe0 100644 --- a/helm-aider.el +++ b/helm-aider.el @@ -1,4 +1,3 @@ - ;; optional helm based completion, need to be manually loaded when needed ;; helm based aider input @@ -46,7 +45,8 @@ :name "Helm Read String" :history 'aider-helm-read-string-history :initial-input initial-input - :default default-value))) + :default default-value + :fuzzy t))) ;; 添加模糊匹配支持 ;; Add input to history if it's not empty (unless (string-empty-p input) (add-to-history 'aider-helm-read-string-history input))