You can also define your own accidental-style. The code below always prints
accidentals when a pitch has an alteration.
I suppose it will work the same for 2.19.

\version "2.18.2"

\relative {
    #(set-accidentals-properties #f
         `(Staff
           ,(lambda (c p bn mp)
                (if (= 0 (ly:pitch-alteration p))
                    '(#f . #f)
                    '(#f . #t))))
         '()
         'Staff)

    \omit Staff.KeySignature
    \key d \major
    c'4 d e fis f ges a! cis
}



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Ignore-key-signature-tp166525p166527.html
Sent from the User mailing list archive at Nabble.com.

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to