Marc Jakobi

Results 203 issues of Marc Jakobi

Environment: NeoVim 0.5 Platform: Arch Linux I noticed that go-to-definition, go-to-implementation, hover, etc. do not work on method references. In this example, ```java List.of("1", "2", "3") .map(Integer::valueOf) ... ``` the...

Given a modular (Java 11) Gradle 7 project with the eclipse plugin And the following dependency: `com.google.protobuf:protobuf-java:3.17.1` And a module-info.java When I run the `eclipse` Gradle task And I open...

Hi. I am using mbsync and davmail 5.5.0 to sync to a Kerio Exchange e-mail account. When starting a sync, I encounter the following stack trace: ``` davmail.exchange.ews.EWSException: ErrorUnsupportedPropertyDefinition Unsupported...

I was wondering if it would make sense to implement a `for` compehension for side-effecting iterations (e.g. when performing IO). A Haskell `do` block can return a `0-tuple`. In Scala,...

Hi. I had my own external zoom and pan wrapper that relied on `Chart#getChartXFromCoordinate()` and `Chart#getChartYFromCoordinate`, which I had implemented for XYCharts, CategoryCharts and HeatMapCharts. I see in the latest...

How to reproduce: - Gradle version 6.7.1 - JavaFX plugin version 0.0.9 Given a modular project with a module-info.java in its main root. And the following Gradle config: ``` java...

**Is your feature request related to a problem? Please describe.** It is usually faster to type a 2-3 letter keyword than it is to select it from an auto-complete list....

I have `` remapped to call a lua function using `vim.keymap.set`. It appears that the `quick_scope#Reload()` function can't handle this, and errors when attempting to restore `b:qs_prev_ctrl_c_map`. Here is a...

### Problem description I noticed method references are not yet supported (NeoVim 0.5 nightly with the nvim-treesitter plugin), for example: ```java Interface::methodName Class::methodName this::methodName ```