Author Topic: Per project bookmarks  (Read 4440 times)

yakir

  • Community Member
  • Posts: 50
  • Hero Points: 2
Per project bookmarks
« on: February 01, 2007, 07:49:07 AM »
Is there a way of causing bookmarks to be per-project (or workspace).
Currently I am implementing this by key-binding the following:
   _str  strP, strK ;
   strP = strip_filename(_project_get_filename(),"EP") ;
   parse event2name(last_event()) with 'A' strK ;
   strP :+= strK ;
   set_bookmark(strP) ;
   message(strP:+" set") ;
Therw must be a better way

Graeme

  • Senior Community Member
  • Posts: 2796
  • Hero Points: 347
Re: Per project bookmarks
« Reply #1 on: February 01, 2007, 08:31:09 AM »
If you're using slick version 11 you can enable bookmarks to be per workspace.  In tools -> options -> general -> search tab  - check "use workspace bookmarks".  (A per project option might be useful too ?)

You code looks like a clever trick.  I guess you use an Alt combination to set a bookmark and a Ctrl combination to goto it.

Graeme
« Last Edit: February 01, 2007, 08:38:54 AM by Graeme »