Hi Randy,I'm trying to figure out how to set chordChanges to true in an include file, like so:
%%%%% def.ily %%%%%
\version "2.20.0"
\layout {
\context {
\ChordNames
\set chordChanges = ##t
}
}
\set is only needed outside of a \layout { \context { ... } } construction. Try:
\layout {
\context {
\ChordNames
chordChanges = ##t
}
}
Best
Lukas
