Amol Mandhane

Results 6 issues of Amol Mandhane

Suppose I have a class like following ``` java package com.example; class OuterClass { class InnerClass { } } ``` The correct import for this should be `import com.example.OuterClass.InnerClass;`. When...

LSP UI has UI components which can be reused by non-LSP packages in many different contexts. For example, Sideline: Can be used as ElDoc/Flycheck front-end. Peek: XRef front-end. Since lsp-mode...

I'm using irony-mode with a huge codebase (O(100k) header files) on a linux machine. Completion quality is quite good but the latency for suggesting completion is 4-5 seconds, which makes...

We want to use log4e as a logging framework in one of our packages. But we can't do so without log4e having a LICENSE. Can you please add a LICENSE...

Based on the README, you need a host and port to do json-rpc in elisp. There are many programs which use STDIO for communication (LSP servers, for example). I'm working...

### Summary Repro: ```py from contextlib import contextmanager from collections.abc import Generator class Base: pass class Derived(Base): pass def factory[T: Base](cls: type[T]) -> T: return cls() d = factory(Derived) @contextmanager...

generics