1 files changed,
2 insertions(+),
2 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2022-08-02 14:27:01 +0300
Parent:
73ee09d
M
lua/core/utils.lua
@@ -1,14 +1,14 @@
return { ---@param mode string ---@param from string - ---@param to string + ---@param to string|function map = function(mode, from, to) vim.keymap.set(mode, from, to, { noremap = true, silent = true }) end, ---@param mode string ---@param from string - ---@param to string + ---@param to string|function expr = function(mode, from, to) vim.keymap.set(mode, from, to, { noremap = true, expr = true }) end,