Alexey Shamrin

Results 42 comments of Alexey Shamrin
trafficstars

I didn't know about Cmd+[ and Cmd+]. I usually use Cmd+Left and Cmd+Right. That said, none of these work :) For now I use Back/Forward commands from right click context...

Cmd-C/V/X don't work too (from issue #27).

Random idea: we could magically add `print` if `=>` comment happens on the same line: ``` javascript value // => 42 ``` The above could be compiled to: ``` javascript...

@ianb, do you have any public doctest.js-using project? I would like to get a feeling if my `value // => 42` idea could be useful in practice. My use of...

Here's test_path.js with the proposed change: ``` javascript pathjoin('a', 'b/', 'c'); // => a/b/c pathjoin('a', '/b/c', 'd'); // => /b/c/d pathjoin('a/b/c', '../d'); // => a/b/d pathjoin('a', '..'); // => a/.....

Thanks! The problem with your suggestion is that `rule` is `undefined` at this point... And no easy way to find out what rule produced the `hash`... I decided to do...

Francisco, could you please comment on my patch? Is idea good or bad? I can completely rewrite my patch if needed.

(This issue was created in response to [Puzzles & Paradoxes IV: Overbound](https://groups.google.com/d/msg/eve-talk/7lhPSjHU3kM/XqqOUJnhCQAJ).)

I've just created feature request for [Pyright](https://github.com/microsoft/pyright) about forgotten `await`: https://github.com/microsoft/pyright/issues/1317 Personally I use Pyright all the time while writing Python code in VSCode. It's works great, especially in interactive...

@cldwalker I agree that workspace wide undo is clearly an enhancement. On the other hand, we should make it obvious that clicking "all" destroys data. I would argue it's UX...