Yan Zhulanow

Results 42 comments of Yan Zhulanow

When installed, Logitech software emulates swipe events for Forward/Back key presses. However, out-of-the-box, events arrive as "other" mouse events.

I don't like the `javaClass.classLoader` approach as it includes kotlinc+kapt classes, and I don't see any good reason for allowing annotation processors to have access to kotlinc. Looks like we...

Hello @JosephTLyons! Thank you very much for the kind words! I'm afraid it would be hard to implement fuzzy search in the Look Up action (Cmd+P) as Spotlight indices don't...

The fix is [manually merged](https://github.com/JetBrains/kotlin/commit/afbb51129f9bbe126393823060699d9a97daed75). Thank you for your contribution!

> FYI: runReadAction that might take 1 sec in shouldStepOverParameterDestructuring means that users cannot type in editor this 1 sec. I'm not sure this can be easily fixed without changing...

Regarding the main change, I noticed the fix does not work for one-line lambdas. ``` data class A(val x: Int, val y: Int) fun A.foo(f: (A) -> Unit) = f(this)...

Partially, the issue will be fixed in Marta 0.8.3. For future versions, I plan to significantly improve directory refreshing machinery.

It's actually Cmd+G/Cmd+Shift+G. Anyway, there're not supported in Marta.

In the following example, I find the parameter/property resolution rule unclear. ``` /** * [A] - to the class, [abc] - to the property * @constructor [A] - to the...

> Also, the order is defined by the Kotlin Language Specification: [Linked scopes](https://kotlinlang.org/spec/scopes-and-identifiers.html#linked-scopes), [Overload resolution](https://kotlinlang.org/spec/overload-resolution.html#overload-resolution) and other sections. The proposal mentions overload resolution. However, in the KDoc, there are no...