<?xml version="1.0"?>
<Denemo>
  <merge>
    <title>A Denemo Keymap</title>
    <author>AT, JRR, RTS</author>
    <map>
      <row>
        <after/>
        <action>BookmarkNonPrinting</action>
        <scheme>  ;;;Non Printing Bookmark 
;;;by Nils Gey RTS Modified to avoid poluting the global namespace with the variable user-input

(let ((user-input "XXX"))
(set! user-input (d-GetUserInput "Named Bookmark" "Give a name" "X"))

 (if user-input   ;in case the user pressed Escape do nothing
 (begin
  (d-DirectivePut-standalone-display "Bookmark" user-input)
  (d-CursorLeft)
  (d-DirectivePut-standalone-ty  "Bookmark" -40)
  (d-DirectivePut-standalone-tx  "Bookmark" -10)
  (d-CursorRight)))
(d-RefreshDisplay))

</scheme>
        <label>Add non-printing Bookmark</label>
        <tooltip>Adds a custom Denemo bookmark without Lilypond output.</tooltip>
      </row>
    </map>
  </merge>
</Denemo>
