X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=lurk.git;a=blobdiff_plain;f=lurk.el;h=8f384dff20dd6e20e6c1779afa132ce96341f27d;hp=26eb8949d8a6adca12617bf90e1f303e2fda2331;hb=b31fbc0054cb2bf3185f4b7ce51e8abac073fbf0;hpb=8d3a7b25c3766e81cbbd0062b311c8bb6cf25abb 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))))))