<?xml version="1.0"?>
<Denemo>
  <merge>
    <title>A Denemo Keymap</title>
    <author>AT, JRR, RTS</author>
    <map>
      <row>
        <action>FindNextLowerNote</action>
        <scheme> ;;;;;;;; FindNextNoteLower
 (d-MoveCursorRight)
(let loop ((lowest (d-GetCursorNoteAsMidi)) (current 0))
  (set! current (d-GetNoteAsMidi))
  (if (or (zero? current) (&gt;= current lowest))
      (begin
	(if (d-MoveCursorRight)
	    (loop lowest current)
	    #t))))
      

  </scheme>
        <label>Next Lower</label>
        <tooltip>Moves cursor to next note that is lower than the cursor.</tooltip>
      </row>
    </map>
  </merge>
</Denemo>
