From f88f468e54f0012778592a0aaff3393fbef35d75 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Fri, 29 Mar 2024 15:11:48 +0000 Subject: [PATCH] chore: swap around force/write keybinds --- lua/core/keybinds.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/core/keybinds.lua b/lua/core/keybinds.lua index c270071..97bc793 100644 --- a/lua/core/keybinds.lua +++ b/lua/core/keybinds.lua @@ -7,8 +7,8 @@ wk.register({ a = { "Telescope find_files hidden=true search_dirs=~", "Find Hidden (~)" }, p = { "Telescope find_files hidden=true", "Find File" }, g = { "Telescope live_grep", "Find Word" }, - s = { ":w", "Write" }, - w = { ":w!", "Force Write" }, + s = { ":w!", "Force Write" }, + w = { ":w", "Write" }, e = { ":e ", "Edit File", silent = false }, },