From 7dbe34e36d9de4912a5f3aa5279540445765814c Mon Sep 17 00:00:00 2001 From: hrsh7th Date: Sat, 2 Apr 2022 01:32:49 +0900 Subject: [PATCH] Fix snr notation --- lua/cmp/utils/keymap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/cmp/utils/keymap.lua b/lua/cmp/utils/keymap.lua index 81cece8..68a53d9 100644 --- a/lua/cmp/utils/keymap.lua +++ b/lua/cmp/utils/keymap.lua @@ -152,7 +152,7 @@ keymap.solve = function(bufnr, mode, map) end if string.find(rhs, lhs, 1, true) == 1 then - local recursive = string.format('_0(cmp.u.k.recursive:%s)', lhs) + local recursive = string.format('0_(cmp.u.k.recursive:%s)', lhs) keymap.set_map(bufnr, mode, recursive, lhs, { noremap = true, script = map.script,