From 59c18c969ae5c1bfd05472f3817ea2f4464ff2eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Tue, 23 Jan 2024 01:07:23 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=EF=B8=8F=20remove(nvim):=20compile?= =?UTF-8?q?r=20keymaps=20for=20the=20code=20group?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/extras/editor/compiler.lua | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/editor/compiler.lua b/.config/nvim/lua/plugins/extras/editor/compiler.lua index a1b9df13..59092b42 100644 --- a/.config/nvim/lua/plugins/extras/editor/compiler.lua +++ b/.config/nvim/lua/plugins/extras/editor/compiler.lua @@ -6,9 +6,6 @@ return { opts = {}, -- stylua: ignore keys = { - { "ccc", "CompilerOpen", desc = "Open Compiler" }, - { "ccR", function() vim.cmd("CompilerStop") vim.cmd("CompilerRedo") end, desc = "Redo Compiler" }, - { "ccr", "CompilerToggleResults", desc = "Toggle Compiler Results" }, { "", "CompilerOpen", desc = "Open Compiler" }, { "", function() vim.cmd("CompilerStop") vim.cmd("CompilerRedo") end, desc = "Redo Compiler" }, { "", "CompilerToggleResults", desc = "Toggle Compiler Results" }, @@ -40,12 +37,4 @@ return { }, }, }, - { - "folke/which-key.nvim", - opts = { - defaults = { - ["cc"] = { name = "compiler" }, - }, - }, - }, }