From 82084adcb72472d329b1d8378d260dcff83b0292 Mon Sep 17 00:00:00 2001 From: pro100ton Date: Thu, 6 Feb 2025 08:23:43 +0300 Subject: [PATCH] Add keymap for russian C-W functionality --- plugin/keymaps.lua | 4 ++++ plugin/options.lua | 1 + 2 files changed, 5 insertions(+) diff --git a/plugin/keymaps.lua b/plugin/keymaps.lua index 3918500..44f5019 100644 --- a/plugin/keymaps.lua +++ b/plugin/keymaps.lua @@ -9,3 +9,7 @@ local set = vim.keymap.set -- Bindings for reloading LUA files (used when working with lua files) -- set("n", "x", ".lua", { desc = "Execute the current lne" }) set("n", "x", "source %", { desc = "Execute the current file" }) + +-- Following section purprose is to rebind some Russian missing binds +-- TODO: Maybe there is more clean and percise way, dunno right now +set("i", "", "") diff --git a/plugin/options.lua b/plugin/options.lua index f0e1dae..4b875ba 100644 --- a/plugin/options.lua +++ b/plugin/options.lua @@ -26,3 +26,4 @@ opt.colorcolumn = "80" -- config to set up clipboard as default register opt.clipboard:append("unnamedplus") +