glance.nvim icon indicating copy to clipboard operation
glance.nvim copied to clipboard

CallHierarchy support

Open leaxoy opened this issue 3 years ago • 3 comments

Code is

public class Main {
    public static void main(String[] args) {
        System.out.println("Hello, world");
    }

    void a() {
        b();
        c();
    }

    void b() {
        c();
    }

    void c() {
        d();
    }

    void d() {
    }
}

Incoming Calls image

Outgoing Calls image

leaxoy avatar Dec 16 '22 12:12 leaxoy

Closed due to no response.

leaxoy avatar Feb 10 '23 15:02 leaxoy

Hey, sorry for the late reply! Call hierarchy will be supported, it's not a simple task because Glance wasn't designed to display nested folded groups in the list, but will be in the future.

DNLHC avatar Feb 10 '23 18:02 DNLHC

This will be so damn cool!!! 🥳 Any way to help with this?

Maybe this would then also work for type hierarchy stuff. 🤔

weilbith avatar Oct 06 '23 20:10 weilbith