Thanks a lot, Roman!
                                mario

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.

-- regards Roman

_______________________________________________
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


--
Ing. Mario Valle
Visualization Group                              | http://www.cscs.ch/~mvalle
Swiss National Supercomputing Centre (CSCS)      | Tel:  +41 (91) 610.82.60
v. Cantonale Galleria 2, 6928 Manno, Switzerland | Fax:  +41 (91) 610.82.82
_______________________________________________
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to