Results 70 comments of brupelo

Package is great so far... but as commented already few months ago it's not possible to "Cancel build" when running a long execution python script. Anyone found a fix for...

I've stopped using this package long time ago but adding a cancel option is just trivial, something like this would probably do: def run(self, **kwargs): if kwargs.get("kill", False): return super().run(**kwargs)...

@YngveNPettersen After googling for a bit similar tools to ccache for visual studio I've landed here... The project I'd like to test this tool isn't as big as chromium but...

@casperdcl Yeah, that's right, a spinner... at first I'd considered this library but then someone from #python just pointed me out for this particular task `yaspin` was a better choice.....

Yeah, I do agree, the first one is the "optimal" one from the whole set of EBNF grammars (as it doesn't contain redundant/verbose elements, it's the most pythonic one :))...

Guys, just for the sake of making my point clearer (sometimes the best way to prove something is by presenting visual samples) I want you to take a look to...

Ideally, you'd be able to express the same rule on different ways, for instance: flow_stmt1: break_stmt | continue_stmt | return_stmt | raise_stmt | yield_stmt flow_stmt2: break_stmt | continue_stmt | return_stmt...

I've tried on conemu 210912 stable (windows 10 pro 10.0.19043 Build 19043) and look what happens once you've finished to add the emojis by using the windows emoji dialog. https://user-images.githubusercontent.com/18058492/165468568-fb51b70f-6a50-41de-a272-2fed2ce0c9ff.mp4...

Any plans for this one? Just tested the examples provided [here](http://www.sublimetext.com/docs/3/selectors.html) with syntect and it seems not all operators are supported by syntect: keyword.control.php keyword MatchPower(1.0) keyword.control.php keyword.control MatchPower(2.0) keyword.control.php...

Check out prymatex project from diegomvh on github, really amazing textmate python clone project full of features, although it needs some serious refactoring in many places and its difficult to...