So, I've recently started using Leo to organize my bookmarks, and I've organized them into groups that I like to open all at once. Like 'Tech News', and such.

This simple script makes it easy to open all the child URLs of the currently selected node:

@command open-child-urls
----
@language python

''' opens all child @url nodes in the web browser '''

for link in p.children():
  g.openUrl(link)
----

I then bind that to my context menu definitions (@data contextmenu_commands):

open-child-urls Open child URLs

And now I can just right click on 'Tech News' and select 'Open Child URLs', and my life is simple -- they all pop open in separate tabs in Chrome, and I'm happy.

Just thought I'd share :)

-->Jake

--
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to