t d h smith

Results 41 comments of t d h smith

For GitGutter, it wouldn't be terribly hard to check the defined regions; they only use 5 region keys to add icons. Maybe we could attach a scan to `post_window_command(window, 'git_gutter')`?...

Maybe a good temporary measure would be to provide a command that flushed the markers?

Oh so we could potentially have many regions using the same region key? That would make removing them much, much easier. :+1: I was playing with brute-force search and that...

I worry that tailoring the random function for certain graphs types might damage other uses. For example, graphs with cycles aren't going to benefit because by necessity they will have...

Doesn't address the sorting speed, but I just committed an option in springyui.js to flip edge labels when they are upside-down. EDIT: See my commit note - I guess this...

Can't speak for @vishnubob but I suspect no one has plans.The built-in `2to3` converter might do a decent job though, considering how small and straightforward the codebase is.

Ok I'm reading up on this too and I'm not 100% sure slots work with `property()`... potentially the latter overrides the former. Objects might need a `__dict__` in order to...

Interesting. The non-meta events (those that inherit `midi.Event`) already have their own copy function, but meta events do not. Meanwhile `copy.copy` does work for me on a significant number of...

I never really looked into this fully. From the discussion last time (#40), it seems I had tracked it to a known interaction between `deepcopy` using `property`/custom getters/setters, but I...