From 0f3b9c04691ff8eeac910352bb5e0a758d6f5861 Mon Sep 17 00:00:00 2001 From: rootiest Date: Sun, 28 Jul 2024 14:41:25 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(keymaps):=20add=20a=20keymap?= =?UTF-8?q?=20for=20yank=20entire=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds Y to yank the whole buffer contents --- lua/config/keymaps.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/config/keymaps.lua b/lua/config/keymaps.lua index 8527d41..4971df2 100644 --- a/lua/config/keymaps.lua +++ b/lua/config/keymaps.lua @@ -347,4 +347,9 @@ wk.add({ end, desc = "Set font size", }, + { -- Yank buffer contents + "Y", + "%y", + desc = "Yank buffer contents", + }, })