Alexander Udalov
Alexander Udalov
Sorry for slow reaction on this topic. Indeed, this can be included in the vim runtime. I'll try it.
Personally, I prefer to avoid excessive highlighting when possible, so I wouldn't find this feature useful for my use cases. But I'm not opposed to contributions here if this functionality...
I'm not familiar with Vundle to confirm or deny if this is a problem. Do you have any other plugins installed by Vundle? Do they work?
Hi, thanks for the feature request. I'm afraid implementing code completion via looking up symbols by kotlin-compiler-embeddable would be too slow for any real world scenario. I think the only...
If that is indeed the case, I suppose you could try and see how fast this would actually be. I think a working prototype wouldn't take much time, however you...
Do you maybe mean launching `kotlin-compiler.jar` in `makeprg` instead of `kotlin-stdlib.jar`? Because to run the program, you must first compile it with `kotlinc` (or with `java .../kotlin-compiler.jar`)
> it takes care about compiling .kt file into .class file What do you mean by this? There's no code in this plugin that invokes the Kotlin compiler, which makes...
OK, thanks for the clarification. I would actually wait until [KT-27171](https://youtrack.jetbrains.com/issue/KT-27171) is implemented, at which point the burden of deciding how is the executable file named and in what package...
I don't have any estimates at this point, since we've only started planning 1.4/1.3.x recently and we don't know the complete picture of what's to be done yet. I can...
Yeah, it's for the support of super calls with default values ([KT-15414](https://youtrack.jetbrains.com/issue/KT-15414)). We had a vague idea of passing a `MethodHandle` to the supermethod in that argument, but no concrete...