<div>It seems on first config some settings are listed by "config list" with a semicolon suffix even if they are a single item. If they are subsequently set to another/the same single value they will then appear in config list WITHOUT the semicolon suffix. See output below. This is a very minor inconsistency but has affected one downstream script: <a href="https://github.com/mturquette/ghar-email/issues/6">https://github.com/mturquette/ghar-email/issues/6.</a><br></div><div><br></div><div>---------------------------------------<br></div><pre>$ notmuch config list
...
search.exclude_tags=spam<span class="pl-k">;</span>                       <-- Semi-colon
...
$ notmuch config get search.exclude_tags
spam
$ notmuch config <span class="pl-c1">set</span> search.exclude_tags spam
$ notmuch config get search.exclude_tags
spam
$ notmuch config list
...
search.exclude_tags=spam                        <-- No semi-colon<br></pre><div>---------------------------------------<br></div><div><br></div><div><br></div>