From 1d405e1828264461ced921f620e39df3d01e5296 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Fri, 28 Jun 2024 20:36:31 -0400 Subject: [PATCH] format comments on lua file --- modules/common/neovim/lua/keybinds.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/common/neovim/lua/keybinds.lua b/modules/common/neovim/lua/keybinds.lua index 0e502d7..ffcd617 100644 --- a/modules/common/neovim/lua/keybinds.lua +++ b/modules/common/neovim/lua/keybinds.lua @@ -71,8 +71,8 @@ key("n", "co", ":copen") key("n", "cq", ":cclose") -- Other -key("n", "", ":noh", { silent = true }) --- Clear search in VimWiki -key("n", "Y", "y$") --- Copy to end of line +key("n", "", ":noh", { silent = true }) --- Clear search in VimWiki +key("n", "Y", "y$") --- Copy to end of line key("v", "", "y:%s/+//gc") --- Substitute selected -key("v", "D", "y'>gp") --- Duplicate selected -key("x", "p", '"_dP') --- Paste but keep register +key("v", "D", "y'>gp") --- Duplicate selected +key("x", "p", '"_dP') --- Paste but keep register