Roman Hubacek wrote:
I'd be very interested in this!


I wrote something about this, maybe it could help for start. Write out all bookmarks:

  ln = editor:MarkerNext(0,MARKER_MAX)
  while ln ~= -1 do
    _ALERT(ln)
    ln = editor:MarkerNext(ln+1,MARKER_MAX)
  end

Set bookmark to line ln:

  editor:MarkerAdd(ln,SC_MARK_ROUNDRECT)

You can hook it on the events OnOpen, OnSave and store/restore it from file.

Thanks Roman, I'll play with this when I have time.

--
Doyle Whisenant
http://www.freewebs.com/mekdesign/
"mechanic" at "sonet" dot "net"

_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to