Is there a way in Lilypond to tie notes across two staves? I have this fragment of an organ piece:
\version "2.18.2"
\language "deutsch"
global = {
\key c \major
\numericTimeSignature
\time 3/4
\set Timing.beamExceptions = #'()
}
right = \relative c'' {
\global
<h dis>2 (<cis e>4~<cis e>~<e, cis'>2~<cis e cis'>)r4
}
left = \relative c' {
\global
dis2 (e4~e cis2) gis'8(fis e dis e fis)
}
And I need to add the red tie between the two notes. (It is an organ piece and I need to let the organist know, that he is supposed to silently exchange fingers on the note and not to hit the tone twice.)

