Hi Randall, On Mon, 12 Jul 2021, randall.becker@xxxxxxxxxxxx wrote: > @@ -300,6 +358,11 @@ static int include_condition_is_true(const struct config_options *opts, > return include_by_gitdir(opts, cond, cond_len, 0); > else if (skip_prefix_mem(cond, cond_len, "gitdir/i:", &cond, &cond_len)) > return include_by_gitdir(opts, cond, cond_len, 1); > + else if (skip_prefix_mem(cond, cond_len, "worktree:", &cond, &cond_len)) > + return include_by_worktree(opts, cond, cond_len, 0); > + else if (skip_prefix_mem(cond, cond_len, "worktree/i:", &cond, > + &cond_len)) > + return include_by_worktree(opts, cond, cond_len, 1); Thank you for not forgetting the `/i` case. Ciao, Dscho > else if (skip_prefix_mem(cond, cond_len, "onbranch:", &cond, &cond_len)) > return include_by_branch(cond, cond_len); > > -- > 2.32.0 > >