diff options
author | marty hiatt <martianhiatus@riseup.net> | 2023-12-18 22:43:11 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2023-12-18 22:43:47 +0100 |
commit | 6a306afeed60e28f2725a9cc8240b723329d7b4c (patch) | |
tree | 860a00af8c55c56cdf3fba32d4d484b8d9bdda1d | |
parent | ee33bd1d2d4f095fe77b26246a71270ef533e735 (diff) |
FIX #515. completion-ignore-case t buffer-local for compose
-rw-r--r-- | lisp/mastodon-toot.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 266fa86..90cf9a9 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -1810,6 +1810,7 @@ EDIT means we are editing an existing toot, not composing a new one." ;; `mastodon-toot--max-toot-chars' is set when we set it (mastodon-toot--get-max-toot-chars)) ;; set up completion: + (setq-local completion-ignore-case t) (when mastodon-toot--enable-completion (set (make-local-variable 'completion-at-point-functions) (add-to-list 'completion-at-point-functions |