Re: Terry, what's the recommended way to change border colors

2014-08-05 Thread 'Terry Brown' via leo-editor
On Tue, 5 Aug 2014 06:16:47 -0500 Edward K. Ream edream...@gmail.com wrote: { border: 5px solid red; } **not**: { border: solid 5px red; } Sorry about that, CSS, or at least most browsers, are less picky than Qt. Nice to know the right way works though, makes it easier for users

Threading thread

2014-08-05 Thread 'Terry Brown' via leo-editor
There are a lot of different issues with this threading discussion. 1) live code execution like LightBox and the lisp music demo - any useful live code execution mode would have to parse the code (ast trees?), execute it expression by expression, and display the results, probably in a specific

Re: Threading thread

2014-08-05 Thread 'Terry Brown' via leo-editor
On Tue, 5 Aug 2014 11:07:36 -0500 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: 1) live code execution like LightBox and the lisp music demo - any useful live code execution mode would have to parse the code (ast trees?), execute it expression by expression, and display

Re: using leo to organize and manage my digital library composed of videos, audio, pdf, etc.

2014-08-04 Thread 'Terry Brown' via leo-editor
On Mon, 4 Aug 2014 07:01:17 -0700 (PDT) duf...@gmail.com wrote: (I hope you don't mind that fact that I am resuscitating a 4-year old thread.) I was going to write a post exactly like the OP of this thread, when I discovered that this question had already been asked in this thread, so

Re: using leo to organize and manage my digital library composed of videos, audio, pdf, etc.

2014-08-04 Thread 'Terry Brown' via leo-editor
. breaking double-click, probably not hard to fix, possibly just a re-naming. Cheers -Terry On Mon, Aug 4, 2014 at 9:12 AM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: On Mon, 4 Aug 2014 07:01:17 -0700 (PDT) duf...@gmail.com wrote: (I hope you don't mind that fact that I am

debugging Leo with git bisect

2014-08-04 Thread 'Terry Brown' via leo-editor
git bisect is great for finding the revision that broke something, but there's an odd Leo specific issue to work around. For a month or more in early 2014 there are Leo commits that abort if .../.git/HEAD doesn't contain a space. It's usually ref: refs/heads/master but while using git bisect

Re: A quick-and-dirty tag API can now be had with the nodetags.py plugin

2014-08-04 Thread 'Terry Brown' via leo-editor
On Mon, 04 Aug 2014 11:53:07 -0400 Jacob Peck gatesph...@gmail.com wrote: Regarding tags, I hacked the nodetags.py plugin together, available at commit b9a764c59de263fbdb47969f1d318759b955c442. Nice. Interface wise, what do people think about short and long names for tags? Even as I ask, I

Re: Terry, what's the recommended way to change border colors

2014-08-04 Thread 'Terry Brown' via leo-editor
On Mon, 4 Aug 2014 11:15:45 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: Ideally, I'd like vim-mode to put a red border around headline or body text widgets when in normal mode, and a blue border around the widgets when in insert mode. And maybe another color for visual mode. How

Re: Terry, what's the recommended way to change border colors

2014-08-04 Thread 'Terry Brown' via leo-editor
On Mon, 4 Aug 2014 17:56:34 -0500 Edward K. Ream edream...@gmail.com wrote: By analogy, I tried the following, with no joy, but the background is pink. QTextEdit#richTextEdit [vim_state ~= vim_normal] { border: solid 3px red; } QTextEdit#richTextEdit [vim_state ~=

Re: A quick-and-dirty tag API can now be had with the nodetags.py plugin

2014-08-04 Thread 'Terry Brown' via leo-editor
On Mon, 04 Aug 2014 13:59:38 -0400 Jacob Peck gatesph...@gmail.com wrote: I just added a minimal tag browser UI. Very cool. And of course you can move it out of the tabs window with the free-layout options on the pane divider context menus. Very minor - if, for some odd reason, you have two

Re: Python-related questions

2014-08-02 Thread 'Terry Brown' via leo-editor
On Sat, 2 Aug 2014 15:23:42 -0700 (PDT) duf...@gmail.com wrote: 2) how to turn off the log window that stays open in the background when I run Leo from Windows (8.1)? Not sure, but maybe C:\PythonXY\pythonw.exe instead of C:\PythonXY\python.exe Cheers -Terry -- You received this message

Re: Restarting the vim-emulation project

2014-08-01 Thread 'Terry Brown' via leo-editor
On Fri, 1 Aug 2014 08:49:12 -0500 Edward K. Ream edream...@gmail.com wrote: In this regard, the difference in cursors between normal, input and visual modes are surprisingly important visual cues. I'll be adding those cues to Leo's vim mode asap. I would recommend doing it this way (this is

@auto-ctext mode

2014-08-01 Thread 'Terry Brown' via leo-editor
I've just pushed a `ctext` importer / writer, it reads / writes files like this (from the docstring): Read/Write simple text files with hierarchy embedded in headlines:: Leading text in root node of subtree Etc. etc. ### A level one node

Re: @auto-ctext mode

2014-08-01 Thread 'Terry Brown' via leo-editor
On Fri, 1 Aug 2014 12:13:56 -0500 Edward K. Ream edream...@gmail.com wrote: Good idea. It could start with something like:: @g.command('print-importer-plugin-docstrings') Never quite sure where to put such code. Perhaps we need a file, say leoUserCommands.py, to hold commands

Re: Download link for the latest version

2014-07-30 Thread 'Terry Brown' via leo-editor
On Wed, 30 Jul 2014 06:33:37 -0700 (PDT) duf...@gmail.com wrote: Hi I recently re-installed my system, and now I am about to re-install Leo. As far as I know, Leo's latest public version could be downloaded from this link: http://www.greygreen.org/leo/leo-editor-latest.zip The

Re: New writer plugins in leo/plugins/writers

2014-07-30 Thread 'Terry Brown' via leo-editor
On Wed, 30 Jul 2014 09:38:19 -0500 Edward K. Ream edream...@gmail.com wrote: On Wed, Jul 30, 2014 at 9:14 AM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: It seems to me that calling the importer and writer on empty files should have so little cost in cases where it's

Re: New writer plugins in leo/plugins/writers

2014-07-30 Thread 'Terry Brown' via leo-editor
On Wed, 30 Jul 2014 12:59:30 -0500 Edward K. Ream edream...@gmail.com wrote: On Wed, Jul 30, 2014 at 11:11 AM, Edward K. Ream edream...@gmail.com wrote: Can you confirm that @auto-explicit always trumps extension? Works for me. Example: @auto-test xyzzy.txt works. Indeed, I have three

Re: New writer plugins in leo/plugins/writers

2014-07-29 Thread 'Terry Brown' via leo-editor
On Tue, 29 Jul 2014 09:29:44 -0500 Edward K. Ream edream...@gmail.com wrote: On Tue, Jul 29, 2014 at 9:13 AM, Edward K. Ream edream...@gmail.com wrote: You must not return a value from a ctor. leoPluginsRef.leo contains the sources for all importers writers. Following those patterns

Re: New writer plugins in leo/plugins/writers

2014-07-29 Thread 'Terry Brown' via leo-editor
On Tue, 29 Jul 2014 14:58:50 -0500 Edward K. Ream edream...@gmail.com wrote: This shows, I think that the only remaining problem is the recognition of @auto-test nodes. Sounds good. Could the signature of BaseScanner.__init__ go from def __init__

Re: Problem DnD of a file to Node

2014-07-29 Thread 'Terry Brown' via leo-editor
Terry, do you have a Windows 8 machine? No, sorry, only occasionally use Win 7 virtual, all Ubuntu otherwise. Cheers -Terry -- 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

Re: New writer plugins in leo/plugins/writers

2014-07-29 Thread 'Terry Brown' via leo-editor
On Tue, 29 Jul 2014 18:20:16 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: In short, afaik, importers and writers can create their own kinds of @auto nodes, as long as they have unique spellings. Yep, just overriding run() and write() makes it very easy to do whatever you want when

Re: New writer plugins in leo/plugins/writers

2014-07-28 Thread 'Terry Brown' via leo-editor
On Sat, 26 Jul 2014 08:32:10 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: By analogy with the plugin importers in leo/plugins/importers, Leo will soon support plugin write code in leo/plugins/writers. This all looks very good. readme.txt and howto.txt - README.txt and HOWTO.txt would

Re: New writer plugins in leo/plugins/writers

2014-07-28 Thread 'Terry Brown' via leo-editor
On Mon, 28 Jul 2014 10:50:14 -0500 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: Note: some data is stored in multiple files (foo.par, foo.xll) so passing the path to the core file rather than a file object makes it easier for the delegate code to calculate additional

Re: New writer plugins in leo/plugins/writers

2014-07-28 Thread 'Terry Brown' via leo-editor
On Mon, 28 Jul 2014 15:46:27 -0500 Edward K. Ream edream...@gmail.com wrote: On Mon, Jul 28, 2014 at 10:50 AM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: [snip] In addition to that, I think there should be an alternative level in the API where the signature is something

Re: New writer plugins in leo/plugins/writers

2014-07-26 Thread 'Terry Brown' via leo-editor
On Sat, 26 Jul 2014 08:32:10 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: By analogy with the plugin importers in leo/plugins/importers, Leo will soon support plugin write code in leo/plugins/writers. There are writer plugins for .md (markdown), .org, .otl and .rst files. They are

Re: Standarized file importing, and keeping Leo updated

2014-07-24 Thread 'Terry Brown' via leo-editor
On Thu, 24 Jul 2014 02:31:34 -0700 (PDT) Fidel N fidelpe...@gmail.com wrote: #Replacement of your method: c.frame.tree.treeWidget.urlDrop = urlDrop c.frame.tree.treeWidget.urlDrop = types.MethodType(urlDrop, c.frame.tree. treeWidget.urlDrop) I think that should be just one assignment:

Re: @auto-otl (vimoutline) already exists! @auto org-mode coming soon

2014-07-21 Thread 'Terry Brown' via leo-editor
On Mon, 21 Jul 2014 07:37:34 -0700 (PDT) James Wilson jamesgswil...@gmail.com wrote: As a quick reminder, a few people have asked about the possibility of @auto-md (for Markdown) in the past. Would it be possible to add this? (There is an open bug about this: see

git pull --rebase

2014-07-19 Thread 'Terry Brown' via leo-editor
We're getting Merge branch 'master' of github.com:leo-editor/leo-editor commits in the repo, in the master branch. I just made one, and there's one from Edward a day or to back. For a project like Leo, for the git log viewing tools I'm aware of, I don't really see that this matters, it's

Re: git pull --rebase

2014-07-19 Thread 'Terry Brown' via leo-editor
On Sat, 19 Jul 2014 13:17:09 -0500 Edward K. Ream edream...@gmail.com wrote: On Sat, Jul 19, 2014 at 11:44 AM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: We're getting Merge branch 'master' of github.com:leo-editor/leo-editor commits in the repo, in the master

Re: Leo's new pylint command

2014-07-18 Thread 'Terry Brown' via leo-editor
On Fri, 18 Jul 2014 10:29:30 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: As of a recent rev, Leo now has a new pylint command. If pylint is installed, it will run pylint on all Python @file nodes of a tree. The command first looks down the tree, and runs each file found. If

Re: Leo's new pylint command

2014-07-18 Thread 'Terry Brown' via leo-editor
On Fri, 18 Jul 2014 18:28:46 -0500 Edward K. Ream edream...@gmail.com wrote: On Fri, Jul 18, 2014 at 5:36 PM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: For me it just says: ('pylint rc file not found:', u'/mnt/usr1/usr1/home/tbrown/.leo/leo/test/pylint-leo-rc.txt

Re: New persistence code ready for testing!

2014-07-16 Thread 'Terry Brown' via leo-editor
On Wed, 16 Jul 2014 11:41:37 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: On Wednesday, July 16, 2014 9:22:03 AM UTC-5, Edward K. Ream wrote: I do notice that the icon box has a black border, indicating that the @auto node is dirty. That's a recent problem. I'll fix it

menus and focus change, linux in particular

2014-07-16 Thread 'Terry Brown' via leo-editor
If you see any odd behavior with menus and or focus, please let me know, hopefully nothing's changed. I've just made three changes with allow the --minimize command line flag to work again, it's bugged me for ages that it's broken. One of the changes involved removing a kludge that was added to

Re: menus and focus change, linux in particular

2014-07-16 Thread 'Terry Brown' via leo-editor
On Wed, 16 Jul 2014 23:38:28 -0500 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: If you see any odd behavior with menus and or focus, please let me know, hopefully nothing's changed. I've just made three changes with p.s. bugs with three distinct causes for the same symptom

Re: New persistence code ready for testing!

2014-07-15 Thread 'Terry Brown' via leo-editor
On Tue, 15 Jul 2014 04:39:06 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: On Monday, July 14, 2014 2:00:48 PM UTC-5, Edward K. Ream wrote: On Mon, Jul 14, 2014 at 11:49 AM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: I asked a vague question about

Re: New persistence code ready for testing!

2014-07-15 Thread 'Terry Brown' via leo-editor
On Tue, 15 Jul 2014 17:50:21 -0500 Edward K. Ream edream...@gmail.com wrote: On Tue, Jul 15, 2014 at 7:04 AM, 'Terry Brown' via leo-editor It seems that the uA persisting code really should try and save uA info on nodes it can't match... So what I was thinking was that the orphan nodes

Re: New persistence code ready for testing!

2014-07-14 Thread 'Terry Brown' via leo-editor
On Mon, 14 Jul 2014 06:48:18 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: As of rev 25101ddf3b0c... Leo now saves and restores clone links and uA's in @auto trees! For example, use the todo plugin to add an icon to a node in an @auto file. Save the file and reload. The icon will

Re: New persistence code ready for testing!

2014-07-14 Thread 'Terry Brown' via leo-editor
On Mon, 14 Jul 2014 11:29:19 -0500 Edward K. Ream edream...@gmail.com wrote: On Mon, Jul 14, 2014 at 10:46 AM, Kent Tenney kten...@gmail.com wrote: Whew! I'm glad we're on the same page now :-) Indeed, hate to see fisticuffs on this list [-; Yeah, I was about to give you a phone

Re: Organizer nodes and leoGlobals.py

2014-07-11 Thread 'Terry Brown' via leo-editor
On Fri, 11 Jul 2014 09:23:12 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: On Thursday, July 10, 2014 9:21:37 AM UTC-5, Edward K. Ream wrote: I plan to leave the functions in leoGlobals.py just as they are, except for reorgs. Done at the latest rev. The new organization is an

Re: about @auto

2014-07-08 Thread 'Terry Brown' via leo-editor
On Tue, 8 Jul 2014 08:18:04 -0500 Kent Tenney kten...@gmail.com wrote: Wondering about current status and potential direction: I'm wondering what the difference between @auto with persistence and @shadow is... is @shadow not trusted enough or has limitations that need addressing? I'm not aware

Re: How to Ctrl-C a script started by Ctrl-B?

2014-07-08 Thread 'Terry Brown' via leo-editor
-Terry On Jul 8, 2014 5:21 AM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: On Mon, 7 Jul 2014 18:55:11 -0700 (PDT) SegundoBob segundo...@gmail.com wrote: Does anyone know how to cancel a Leo-Editor script that is started by Ctrl-B? I'm not sure if it can

Re: Representing Leo outlines in git

2014-07-08 Thread 'Terry Brown' via leo-editor
On Tue, 08 Jul 2014 10:36:43 -0400 Jacob Peck gatesph...@gmail.com wrote: What it could allow is per-node versioning... but there are better ways of doing that. Kent's work, for example... versioning Leo nodes with git 2013-8-28 https://groups.google.com/forum/#!topic/leo-editor/F4k_zCXjtYc

Re: Representing Leo outlines in git

2014-07-08 Thread 'Terry Brown' via leo-editor
On Tue, 08 Jul 2014 11:11:06 -0400 Jacob Peck gatesph...@gmail.com wrote: On 7/8/2014 11:05 AM, Edward K. Ream wrote: On Tue, Jul 8, 2014 at 9:36 AM, Jacob Peck gatesph...@gmail.com wrote: What it could allow is per-node versioning... but there are better ways of doing that. Kent's

Re: about @auto

2014-07-08 Thread 'Terry Brown' via leo-editor
On Tue, 8 Jul 2014 08:18:04 -0500 Kent Tenney kten...@gmail.com wrote: There is also a pretty old bug in 'refresh from disk' just saying ... https://groups.google.com/forum/#!topic/leo-editor/Qp4D74Ig_jY https://bugs.launchpad.net/leo-editor/+bug/1259127 That would be a nice one to get

Re: Representing Leo outlines in git

2014-07-08 Thread 'Terry Brown' via leo-editor
On Tue, 8 Jul 2014 23:47:57 +0200 Fidel N fidelpe...@gmail.com wrote: About the gnx, I wanted to say something Edward didnt. Not a complaint or anything, but from my point of view, the only feature they are missing: When you cut an outline, then paste it otherwhere (same or other Just in

Re: Using leo for documentation (rst3 html)

2014-07-07 Thread 'Terry Brown' via leo-editor
On Mon, 7 Jul 2014 09:59:09 -0700 (PDT) Todd Mars tamn...@gmail.com wrote: The Repeats: It is to perform a command when the user stops typing, right? --If the user has not type, nothing is done. --If the user has typed, then the timer starts. If there was a timer already, it's

Re: How to Ctrl-C a script started by Ctrl-B?

2014-07-07 Thread 'Terry Brown' via leo-editor
On Mon, 7 Jul 2014 18:55:11 -0700 (PDT) SegundoBob segundo...@gmail.com wrote: Does anyone know how to cancel a Leo-Editor script that is started by Ctrl-B? I'm not sure if it can be done from Leo, I think the Ctrl-B scripts are run in the same process as Leo itself. Would a solution

Re: Standarized file importing, and keeping Leo updated

2014-07-06 Thread 'Terry Brown' via leo-editor
On Sun, 6 Jul 2014 14:16:18 -0700 (PDT) Fidel N fidelpe...@gmail.com wrote: Thank you both. Already tried both ways; And failed but already very close. Edward, how is Leo supposed to know that my leopyref.leo file now will be leopy.leo? Where do I have to tell Leo to search for leopy

Re: spatial versioning

2014-07-04 Thread 'Terry Brown' via leo-editor
, Jul 3, 2014 at 8:50 PM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: On Thu, 3 Jul 2014 18:30:32 -0500 Kent Tenney kten...@gmail.com wrote: p.gnx is not currently writable, would it be a big deal to make it writeable? If not globally, for @auto tree nodes? So

Re: spatial versioning

2014-07-04 Thread 'Terry Brown' via leo-editor
-Terry On Fri, Jul 4, 2014 at 2:38 PM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: On Fri, 4 Jul 2014 11:03:08 -0500 Kent Tenney kten...@gmail.com wrote: @shadow has persistent uas and gnxs. and done in an interesting way: the @shadow file organizer node ua contains

Re: spatial versioning

2014-07-03 Thread 'Terry Brown' via leo-editor
On Thu, 3 Jul 2014 18:30:32 -0500 Kent Tenney kten...@gmail.com wrote: p.gnx is not currently writable, would it be a big deal to make it writeable? If not globally, for @auto tree nodes? So wow, p.v.gnx is a property which only supports get, which is why you can't write to it, which wasn't a

Re: issues/bugs from launchpad to github - volunteers?

2014-07-02 Thread 'Terry Brown' via leo-editor
On Wed, 2 Jul 2014 08:16:43 -0700 (PDT) Fidel N fidelpe...@gmail.com wrote: Hi Terry, I also remember that was talked a while ago. You guys probably knew about this, but just in case, I found a batch exporter from Launchpad into excel (half of the work):

Re: Using leo for documentation (rst3 html)

2014-07-02 Thread 'Terry Brown' via leo-editor
On Wed, 2 Jul 2014 10:44:08 -0500 Edward K. Ream edream...@gmail.com wrote: On Tue, Jul 1, 2014 at 1:39 PM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: On Tue, 1 Jul 2014 10:54:25 -0700 (PDT) Todd Mars tamn...@gmail.com wrote: I've found a delay timer to execute code

Re: Does anyone use g.app.afterHandler (for idle-time processing)?

2014-07-01 Thread 'Terry Brown' via leo-editor
On Tue, 1 Jul 2014 05:06:27 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: Leo's idle-time handling is a bit of a mess. I'm thinking of simplifying it by putting most of the logic in qtGui.py. This makes sense, imo, because idle-time handling is inherently platform/gui dependent.

Re: Using leo for documentation (rst3 html)

2014-07-01 Thread 'Terry Brown' via leo-editor
On Tue, 1 Jul 2014 10:54:25 -0700 (PDT) Todd Mars tamn...@gmail.com wrote: Another request! I've found a delay timer to execute code is very useful. For example, if I stopped typing for 5 seconds, It would execute 'Alt-X Ctrl-P' and execute the last command which in my case is to produce my

issues/bugs from launchpad to github - volunteers?

2014-07-01 Thread 'Terry Brown' via leo-editor
Hi all, Any volunteers to move the issues/bugs from launchpad to github? I think someone did an initial assessment but I can't remember the conclusion. It would be nice to get them all in one place. Cheers -Terry -- You received this message because you are subscribed to the Google Groups

Qt's triggered() signal

2014-07-01 Thread 'Terry Brown' via leo-editor
I've done some experiments and it seems that Qt can send its triggered(checked) signal to callables that accept zero or more arguments. foo.triggered.connect(lambda: do_something()) and foo.triggered.connect(lambda checked: do_something()) both work, it must either check or try/except the

Re: unit testing increases number of registered handlers

2014-06-30 Thread 'Terry Brown' via leo-editor
On Mon, 30 Jun 2014 02:15:17 -0700 (PDT) Fidel N fidelpe...@gmail.com wrote: def on_idle(tag, keywords): g.es(iddle timer) g.registerHandler(idle, on_idle) g.enableIdleTimeHook(idleTimeDelay=5000) Edward alluded to some of this in his response, but I'd say: Never heard of the

Re: unit testing increases number of registered handlers

2014-06-30 Thread 'Terry Brown' via leo-editor
On Mon, 30 Jun 2014 11:44:59 -0500 Edward K. Ream edream...@gmail.com wrote: On Mon, Jun 30, 2014 at 4:31 AM, Fidel N fidelpe...@gmail.com wrote: Still, idle is not yet useful because of firing several times the command and not respecting the time. Let's investigate the second problem

Re: Support for Qt5 has begun

2014-06-29 Thread 'Terry Brown' via leo-editor
On Fri, 27 Jun 2014 09:24:03 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: On Friday, June 27, 2014 11:17:01 AM UTC-5, Edward K. Ream wrote: Just added an event arg (the first arg) for several clicked callbacks. The find buttons now work again ;-) I'll do the same for

Re: problems with the minibuffer

2014-06-29 Thread 'Terry Brown' via leo-editor
On Sat, 28 Jun 2014 07:47:24 -0500 Edward K. Ream edream...@gmail.com wrote: On Fri, Jun 27, 2014 at 6:07 AM, Zoltan Benedek benzol...@gmail.com wrote: Hi, Recently I've tried some commands in the minibuffer and got some problems: These have been fixed at rev ba20f6dbaa86. They were

Re: current commander

2014-06-26 Thread 'Terry Brown' via leo-editor
On Thu, 26 Jun 2014 02:41:01 -0700 (PDT) Fidel N fidelpe...@gmail.com wrote: well found out I can solve it by using c as an argument in the functions defined in the other Leo window. Then I can call those functions from other leo windows using their 'c' as argument. Ok, good, I don't

Re: Support for Qt5 has begun

2014-06-26 Thread 'Terry Brown' via leo-editor
On Sun, 15 Jun 2014 11:53:07 -0500 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: Another instance of this trap: https://github.com/leo-editor/leo-editor/commit/ecca25af I think searching for all occurrences of clicked() and triggered() with both kinds of quotes would find

Re: Is there a way to move button toolbar to the continuation of the menubar?

2014-06-26 Thread 'Terry Brown' via leo-editor
On Fri, 20 Jun 2014 11:39:17 -0500 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: I've just added the following commands: gui-all-hide gui-all-show gui-iconbar-hide gui-iconbar-show gui-menu-hide gui-menu-show gui-minibuffer-hide gui-minibuffer-show

Re: Inaccuracies with @shadow

2014-06-26 Thread 'Terry Brown' via leo-editor
On Mon, 23 Jun 2014 07:26:58 +1200 David McNab davidmcna...@gmail.com wrote: However, with numerous Python files, @shadow has been inaccurately writing out files. The main inaccuracies have been to do with indent levels for significant blocks of code (a massive dealbreaker in Python), which

Re: Is there a way to move button toolbar to the continuation of the menubar?

2014-06-26 Thread 'Terry Brown' via leo-editor
On Thu, 26 Jun 2014 13:54:32 -0500 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: gui-minibuffer-show gui-statusbar-hide gui-statusbar-show and now gui-tabbar-hide gui-tabbar-show ...and, realizing that show and hide commands are bad candidates for key

Re: Calling a leo class function from the minibuffer

2014-06-25 Thread 'Terry Brown' via leo-editor
On Wed, 25 Jun 2014 11:03:09 -0700 (PDT) Fidel N fidelpe...@gmail.com wrote: Hello: Im starting to use AHK to send commands to Leo. So far I create a AHK may stand for: AutoHotkey, a programming language for creating Windows scripts and applications @command in the outline, then call it

Re: Installing Leo Mint

2014-06-25 Thread 'Terry Brown' via leo-editor
On Wed, 25 Jun 2014 20:07:19 +0100 dufriz duf...@gmail.com wrote: On Wed, Jun 25, 2014 at 7:53 PM, 'Terry Brown' via leo-editor Leo hasn't made it into the Ubuntu and related repositories, mostly lack of developer time and developer knowledge, I don't know anything about building

Re: New to Leo Editor and feeling lost...

2014-06-24 Thread 'Terry Brown' via leo-editor
On Tue, 24 Jun 2014 07:18:55 -0500 Edward K. Ream edream...@gmail.com wrote: How did you install Leo? Would it be convenient to install using git? Remember that you can get the latest version from git as https://github.com/leo-editor/leo-editor/archive/master.zip i.e. just a simple .zip

Re: New to Leo Editor and feeling lost...

2014-06-24 Thread 'Terry Brown' via leo-editor
On Tue, 24 Jun 2014 09:55:32 -0400 Alec Burgess burn...@rogers.com wrote: On 2014-06-24 9:06, 'Terry Brown' via leo-editor wrote: Remember that you can get the latest version from git as https://github.com/leo-editor/leo-editor/archive/master.zip i.e. just a simple .zip download

Re: Scripts for importing your mindmaps from MindJet and Freemind

2014-06-21 Thread 'Terry Brown' via leo-editor
On Sat, 21 Jun 2014 03:43:08 -0700 (PDT) Fidel N fidelpe...@gmail.com wrote: Hi, I just made two scripts for importing from MindJet and Freemind. I really think those two should be in the menu File - import - Because when a new user comes to Leo, he most likely comes from any other of the

Re: Is there a way to move button toolbar to the continuation of the menubar?

2014-06-20 Thread 'Terry Brown' via leo-editor
On Fri, 20 Jun 2014 06:43:15 -0700 (PDT) Zoltan Benedek benzol...@gmail.com wrote: Hi, It would be nice if I could move the script button toolbar to the menubar, after the Help menu. There is a lot of free space, and I could get one more line for the work space. In some office programs you

Re: LEO: A Learning Environment Organizer

2014-06-18 Thread 'Terry Brown' via leo-editor
On Wed, 18 Jun 2014 14:50:57 -0700 (PDT) Fidel N fidelpe...@gmail.com wrote: Hi all. I found yet another LEO software, this time is a Machine learning software. I will call the other one LEO, and ours is 'Leo editor' I wanted to post it here because I found it very interesting. That is

Re: Support for Qt5 has begun

2014-06-15 Thread 'Terry Brown' via leo-editor
PyQt5 conversion seems mostly straight forward, apart from the parts that are not straight forward :-} Trying to work out what's going on in todo.py, let's use a simple test case, just running the 'insert-icon' command on an outline with a single node. 'insert-icon' uses

Re: Terry, please check todo.py with PyQt5

2014-06-15 Thread 'Terry Brown' via leo-editor
On Sat, 14 Jun 2014 13:20:01 -0500 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: On Sat, 14 Jun 2014 10:19:44 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: I made a number of changes, but not enough, it seems. todo works with PyQt4 but not 5. For example, icons

Re: Proposal: require pyqt version = 4.5

2014-06-14 Thread 'Terry Brown' via leo-editor
On Sat, 14 Jun 2014 09:47:33 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: My guess is that few people will be affected, and those that are can easily upgrade. For example, my installed version of pyqt is 4.7 on Windows and 4.8.6 on Ubuntu. (It's 5.3.0 on Windows with Python 3.4). I

Re: Terry, please check todo.py with PyQt5

2014-06-14 Thread 'Terry Brown' via leo-editor
On Sat, 14 Jun 2014 10:19:44 -0700 (PDT) Edward K. Ream edream...@gmail.com wrote: I made a number of changes, but not enough, it seems. todo works with PyQt4 but not 5. For example, icons don't appear in headlines. I'll take a look when I can. todo.py doesn't work with Python 3, well, it

Good luck with the hips

2014-06-14 Thread 'Terry Brown' via leo-editor
June 19th, I thought it was a couple of days closer, but anyway, best wishes with the new hips - both at once, or one at a time? Cheers -Terry -- You received this message because you are subscribed to the Google Groups leo-editor group. To unsubscribe from this group and stop receiving emails

Re: Support for Qt5 has begun

2014-06-12 Thread 'Terry Brown' via leo-editor
On Thu, 12 Jun 2014 16:03:27 -0500 Edward K. Ream edream...@gmail.com wrote: On Thu, Jun 12, 2014 at 3:38 PM, duf...@gmail.com wrote: Just to get it right, do you advise us to uninstall PyQt4 and install PyQt instead? To do so would be no trouble at all for me, so no problem. To answer

Re: Support for Qt5 has begun

2014-06-12 Thread 'Terry Brown' via leo-editor
On Thu, 12 Jun 2014 17:55:45 -0500 Edward K. Ream edream...@gmail.com wrote: On Thu, Jun 12, 2014 at 11:54 AM, Edward K. Ream edream...@gmail.com wrote: The last task will be hook up connections again when using Qt5. Actually, there were a few more items, but as of rev dc9568360f7d...

log window version numbers

2014-06-12 Thread 'Terry Brown' via leo-editor
Hey Jacob, I think you've worked on this most recently? Latest Leo, in Ubuntu / Py 2.7.4 Qt 4 it says Leo Log Window Leo 4.11 final, build dc9568360f7d (branch: master), 2014-06-12 18:00:40 Python 2.7.6, qt version 4.8.6 linux2 But in Win7 / Py 3.4 Qt 5 it says Leo 4.11 final, build 6240,

Re: Support for Qt5 has begun

2014-06-12 Thread 'Terry Brown' via leo-editor
On Thu, 12 Jun 2014 18:00:22 -0500 Edward K. Ream edream...@gmail.com wrote: On Thu, Jun 12, 2014 at 4:15 PM, Terry Brown terry_n_br...@yahoo.com wrote: I couldn't get more than one Qt running in Windows when I tried, I was aiming for Qt4+Py2.7 and Qt5+Py3.4 but whichever one I

Re: log window version numbers

2014-06-12 Thread 'Terry Brown' via leo-editor
On Thu, 12 Jun 2014 20:25:29 -0400 gatesphere gatesph...@gmail.com wrote: Was your Win7 copy not checked-out from git? There's some fall-back Ha, I guess that explains it - I got it from https://github.com/leo-editor/leo-editor/archive/master.zip which includes .gitignore, but not .git. Ok

Re: Leo settings revamp (was Re: Why Leo is not yet ready for prime time (for most users))

2014-06-10 Thread 'Terry Brown' via leo-editor
On Tue, 10 Jun 2014 06:33:48 -0500 Edward K. Ream edream...@gmail.com wrote: On Mon, Jun 9, 2014 at 12:20 PM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: E.g. from the Settings menu: Settings - Appearance - Fonts would open myLeoSettings.leo at the appropriate

Re: Why Leo is not yet ready for prime time (for most users)

2014-06-09 Thread 'Terry Brown' via leo-editor
On Mon, 9 Jun 2014 06:31:03 -0700 (PDT) Todd Mars tamn...@gmail.com wrote: There is no reason why the settings cannot be made user friendly, other than the work involved. Simply enumerating the specific problems from the beginning, and designing a friendly user interface to perform the

Re: Why Leo is not yet ready for prime time (for most users)

2014-06-09 Thread 'Terry Brown' via leo-editor
On Mon, 9 Jun 2014 10:42:36 -0500 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: But you're right, ultimately it's just a matter of finding time. Baby steps, I just added color and font selection tools to LeoSettings, with the intent they be automatically copied

Leo settings revamp (was Re: Why Leo is not yet ready for prime time (for most users))

2014-06-09 Thread 'Terry Brown' via leo-editor
On Mon, 9 Jun 2014 10:06:09 -0700 (PDT) duf...@gmail.com wrote: As an alternative to a restructuring of the settings, I propose a menu-based simplified access to the settings, which will let the user zoom-in to the relevant part of the settings file. The most commonly used settings (font

Re: v5.x roadmap -- Ideas, priorities, etc.

2014-06-09 Thread 'Terry Brown' via leo-editor
On Mon, 9 Jun 2014 11:36:06 -0700 (PDT) duf...@gmail.com wrote: Although I am not one of the developers, I think it's not out of place if I suggest that it's about time we start focusing on planning the next release, which as I understand would be v5.0. In fact, it would be nice to start

Re: Recent Errors

2014-06-07 Thread 'Terry Brown' via leo-editor
On Sat, 7 Jun 2014 06:59:05 -0700 (PDT) Chris George technat...@gmail.com wrote: Hello, Over the last couple of days I have been getting the following error at start-up: Do you use the leoscreen plugin? I use it constantly, but didn't know if anyone else did :-) It's unix only leo /

@rclick now support submenus

2014-06-02 Thread 'Terry Brown' via leo-editor
Looks like @rclick isn't well doc'ed, :-/ but it lets you add context menu items (right-click) to your custom @buttons. Anyway, it now supports submenus, any @rclick node with no non-whitespace body text will generate a submenu of its @rclick children. Any number of levels. By general utility

Re: Customizing the layout

2014-05-29 Thread 'Terry Brown' via leo-editor
On Wed, 28 May 2014 20:32:22 -0700 (PDT) duf...@gmail.com wrote: Terry, I know that you are busy, but... is there any chance you could implement some of these changes in the *default* settings (after Edward's approval, of course): 1) as mentioned above, defining the background color of the

Re: Hiding node-type markers. Proposing: type-dependent icons

2014-05-28 Thread 'Terry Brown' via leo-editor
On Wed, 28 May 2014 06:43:50 -0700 (PDT) duf...@gmail.com wrote: Thinking along the same lines, it just occurred to me: wouldn't it be more rational take the node type marked altogether out of the headline? After all, it is metadata. So, the headline would display only the text of the

Re: Hiding node-type markers. Proposing: type-dependent icons

2014-05-28 Thread 'Terry Brown' via leo-editor
On Wed, 28 May 2014 10:11:04 -0400 Jacob Peck gatesph...@gmail.com wrote: I think replacing them with icons and showing them on edit would be a good enhancement, especially with an easy way to define custom icons via @settings :) Definitely thinking of @settings to control styling.

Re: Hiding node-type markers. Proposing: type-dependent icons

2014-05-27 Thread 'Terry Brown' via leo-editor
On Tue, 27 May 2014 15:47:49 -0700 (PDT) duf...@gmail.com wrote: From what I have read of the documentation (I am not through yet, and my reading so far has been very cursory, I admit), the different types of nodes are identified by explicit markers in the node names, so that certain nodes

Re: Simple Test that consistently causes Gtk-CRITICAL error messages

2014-05-25 Thread 'Terry Brown' via leo-editor
On Sun, 25 May 2014 15:44:14 -0700 (PDT) SegundoBob segundo...@gmail.com wrote: Terry, The Gtk-CRITICAL errors are printed to stderr by Gtk/Glib code. Hence, they never appear in the Leo-Editor log pane. They only appear on the console. Hence, to do the tests you must start Leo-Editor

Re: Layout Menu

2014-05-24 Thread 'Terry Brown' via leo-editor
On Sat, 24 May 2014 08:13:04 -0700 (PDT) Chris George technat...@gmail.com wrote: Hello, I have a couple of questions. 1. Is there a better way to access the layout menu than trying repeatedly to right click on the narrow bit of border between windows? No, partly because the context of

Re: Layout Menu

2014-05-24 Thread 'Terry Brown' via leo-editor
On Sat, 24 May 2014 11:37:20 -0500 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: Just because it's easy, I'm going to add a free-layout-context-menu command to open the free layout context menu using the first border in the top level splitter as the context

Re: Layout Menu

2014-05-24 Thread 'Terry Brown' via leo-editor
::handle:vertical { height: 20px; } Seems you shouldn't need the ::handle part but it was inconsistent when I took that out. Cheers -Terry Chris On Saturday, May 24, 2014 9:53:17 AM UTC-7, Terry wrote: On Sat, 24 May 2014 11:37:20 -0500 'Terry Brown' via leo-editor leo-e

Re: Layout Menu

2014-05-24 Thread 'Terry Brown' via leo-editor
took that out. Cheers -Terry Chris On Saturday, May 24, 2014 9:53:17 AM UTC-7, Terry wrote: On Sat, 24 May 2014 11:37:20 -0500 'Terry Brown' via leo-editor leo-e...@googlegroups.com javascript: wrote: Just because it's easy, I'm going to add

launchpad bugs to github

2014-05-23 Thread 'Terry Brown' via leo-editor
Someone started looking at moving the launchpad bugs to github, what was the conclusion reached? Thanks, Terry -- 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

<    8   9   10   11   12   13   14   15   16   17   >