vim

2023-04-20T16:32:15.456889Z

Is there a way to Go to Definition works correctly when navigating to jar files? For example, when navigating to functions in clojure.core

2023-04-20T16:33:19.210579Z

I had the impression that it used to work, but I'm not sure if it's a bug, something with my conf, or if it simply doesn't work and I have to accept that

Dumch 2023-05-19T09:03:12.521139Z

same here, 1 level

fuad 2023-04-22T12:20:15.372639Z

I have it working for 1 level deep. E.g. i can gd into something defined in a jar but I can't gd inside of that thing.

Jan K 2023-04-20T16:41:34.736999Z

Works for me

2023-04-20T16:41:57.909379Z

🤔

2023-04-20T16:47:20.670329Z

performance = {
    cache = {
      enabled = true,
    },
    rtp = {
      paths = { vim.fn.stdpath("data") .. "/site" },
      -- disable some rtp plugins
      disabled_plugins = {
        -- "gzip",
        -- "matchit",
        -- "matchparen",
        "netrwPlugin",
        -- "tarPlugin",
        "tohtml",
        "tutor",
        -- "zipPlugin",  <-------------------  THIS ONE IS IMPORTANT
      },
    },
  }

2023-04-20T16:48:16.451189Z

I switched to lazy.vim and the zipPlugin is turned off by default.

👌 1
👌🏻 1