<?xml version="1.0"?>
<Denemo>
  <merge>
    <title>A Denemo Keymap</title>
    <author>AT, JRR, RTS</author>
    <map>
      <row>
        <after>Hide</after>
        <action>ShiftNext</action>
        <scheme>;;ShiftNext
(let (( lilytype (GetTypeAsLilypond))  
	( lilycontext  (GetContextAsLilypond))
	( X (d-GetUserInput (_ "X-Y shift") (_ "Give horizontal shift required") "1.5"))
	( Y  (d-GetUserInput (_ "X-Y shift") (_ "Give vertical shift required") "0.0")))
(if (and lilytype X Y)
  (StandAloneDirectiveProto (cons "ShiftNext" (string-append  "\\once \\override " lilycontext "." lilytype " #'extra-offset = #'(" X " . " Y")"  )))
  #f))
</scheme>
        <label>(Print) Shift Object</label>
        <tooltip>Asks for horizontal and vertical offsets and inserts a directive to displace the object at the cursor on printing.</tooltip>
      </row>
    </map>
  </merge>
</Denemo>
