From 3e43932e02d2f0d0363eb6f8639decfe64f712dc Mon Sep 17 00:00:00 2001 From: Lawrence Ho <203431+lawrenceho@users.noreply.github.com> Date: Sat, 13 Jul 2024 07:51:59 +0000 Subject: [PATCH] feat: new java mappings format for which-key v3 --- lua/lazyvim/plugins/extras/lang/java.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lazyvim/plugins/extras/lang/java.lua b/lua/lazyvim/plugins/extras/lang/java.lua index 9730bbf2..97e37ef5 100644 --- a/lua/lazyvim/plugins/extras/lang/java.lua +++ b/lua/lazyvim/plugins/extras/lang/java.lua @@ -194,7 +194,7 @@ return { { mode = "n", buffer = args.buf, - { "cx", name = "+extract" }, + { "cx", group = "extract" }, { "cxv", require("jdtls").extract_variable_all, desc = "Extract Variable" }, { "cxc", require("jdtls").extract_constant, desc = "Extract Constant" }, { "gs", require("jdtls").super_implementation, desc = "Goto Super" }, @@ -206,7 +206,7 @@ return { { mode = "v", buffer = args.buf, - { "cx", name = "+extract" }, + { "cx", group = "extract" }, { "cxm", [[lua require('jdtls').extract_method(true)]],