Hi Reilly,
I would like all the harmonic/flageolet circles in the passage below
to be underneath the slur. However, the one for the G-sharp is outside
the slur.
```lilypond
\version "2.26.0"
\language "english"
\fixed c' {
\repeat tremolo 2 { b'16(\mp\> b'16^\flageolet } \repeat tremolo 2 {
b'32 b'32^\flageolet } \repeat tremolo 2 { fs''32^\flageolet
gs''32^\flageolet } \repeat tremolo 2 { fs''32^\flageolet
gs''32^\flageolet)\pp } r8 r4
}
```
I've seen `avoid-slur = #'inside` as a possibility, but I can't find
which grob to attach that to in an `\override` or `\set` statement for
this case.
\override Script.avoid-slur = #'inside
The flageolet is a Grob of type 'Script'; but I admit that I didn't
immediately find a canonical place in the documentation where this is
stated clearly.
Lukas