Philip Waritschlager

Results 359 comments of Philip Waritschlager

There's now also the bookmark plugin: https://github.com/haqk/micro-bookmark/

Ok so I needed `grab_button` too today, and here's how you can do it: Firstly, there is a type error in the source, see PR #19. Once Tamás has merged...

> for usual code-compile-run cycle it really doesn't make so much difference Ok so there seems to be some kind of caching indeed. Some anecdotal (but consistent) performance tests on...

> Yes, the block comments shouldn’t be hoisted with the var declarations. That’s a useless place for the comments to be output, and as you point out, it breaks JSDoc....

> `x = undefined` Sure! But then you'll have to mark `x` as `@type {number | undefined}` and the effective type changes. In contrast, consider this JS code, perhaps a...

ah cool. Not with `strictNullChecks: true`, though. [playground link](https://www.typescriptlang.org/play?strictNullChecks=true&filetype=js#code/PQKhAIAEBcE8AcCm4DeA7ArgWwEaIE4C+4IwAUAG4CG+4AHgNxl3gC84GaAJogGYCWaRFyYt2AZiZA) (and also, you need to set language to JavaScript as JSDoc has no effect inside .ts files)

@edemaine Thanks for the clarification! --- As you know, this PR branch has been in use in [CoffeeSense](https://github.com/phil294/coffeesense) for several months now, and indeed successfully so. Today however, I have...

> I'm wondering if there's value in adding a vscode command to insert a coffeesense / coffescript jsdoc comment stub. I keep forgetting the correct syntax and always come back...

fyi in some of the recent releases, I have completely removed outline (document symbols) in order for the new sticky scroll feature of VSCode to nicely work, based on indentation....

so apparently `select` is syntax sugar for `_select_action` according to https://github.com/crystal-lang/crystal/pull/3130, but according to Channel docs https://crystal-lang.org/api/1.4.1/Channel.html all kinds of `select` methods don't exist? (but they do) How is that...