<?xml version="1.0"?>
<Denemo>
  <merge>
    <title>A Denemo Keymap</title>
    <author>AT, JRR, RTS</author>
    <map>
      <row>
        <after>ToggleNoteTie</after>
        <action>ToggleNoteDownTie</action>
        <scheme>;;ToggleNoteDownTie
(let ((tag "Tie"))
	(if (d-Directive-note? tag)
		(d-DirectiveDelete-note tag)
		(begin
			(d-DirectivePut-note-postfix tag "-\\tweak #'direction #-1 ~")
			;;for some reason we do not have &#x23DD; in the font
			(d-DirectivePut-note-graphic tag "\n~
			Denemo
			30")))
	(d-RefreshDisplay)
	(d-SetSaved #f))
</scheme>
        <label>Individual Note Down-Tie (Off/On)</label>
        <tooltip>Ties the individual note at the cursor the tie going down; repeat to remove.</tooltip>
      </row>
    </map>
  </merge>
</Denemo>
