From b31fbc0054cb2bf3185f4b7ce51e8abac073fbf0 Mon Sep 17 00:00:00 2001 From: plugd Date: Tue, 6 Jul 2021 21:08:01 +0200 Subject: [PATCH] Made nick completion case-insensitive. --- lurk.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lurk.el b/lurk.el index 26eb894..8f384df 100644 --- a/lurk.el +++ b/lurk.el @@ -842,7 +842,8 @@ portion of the source component of the message, as LURK doesn't use this.") (let* ((end (max lurk-input-marker (point))) (space-idx (save-excursion (re-search-backward " " lurk-input-marker t))) - (start (if space-idx (+ 1 space-idx) lurk-input-marker))) + (start (if space-idx (+ 1 space-idx) lurk-input-marker)) + (completion-ignore-case t)) (unless (string-prefix-p "/" (buffer-substring start end)) (completion-in-region start end (lurk-get-context-users lurk-current-context)))))) -- 2.20.1