]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chordnames-nochord.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / chordnames-nochord.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "Rests in music passed to ChordNames context display noChordSymbol.
5 noChordSymbol is treated like a ChordName with respect to chordChanges.
6 "
7 }
8
9 myChords = \chordmode {
10   c1 r1 r1 \break
11   r1 g1 c1 \break
12 }
13
14 \score {
15   <<
16     \new ChordNames { 
17       \myChords 
18       \set chordChanges = ##t
19       \myChords
20     }
21     \new FretBoards { 
22       \myChords 
23       \myChords
24     }
25     \new Staff { 
26       \myChords 
27       \myChords
28     }
29   >>
30 }