all repos

init.lua @ 16d3263

my nvim config
1 files changed, 1 insertions(+), 1 deletions(-)
refactor(utils): set expr as optional parameter
Author: Smirnov Olexander ss2316544@gmail.com
Committed at: 2022-04-29 21:56:46 +0300
Parent: 04f0640
M lua/core/utils.lua

@@ -2,7 +2,7 @@ return {

---@param mode string ---@param from string ---@param to string - ---@param expr boolean + ---@param expr boolean|nil map = function(mode, from, to, expr) if expr then vim.keymap.set(mode, from, to, { noremap = true, expr = true })