This commit is contained in:
hrsh7th
2021-11-10 04:28:32 +09:00
parent faaf1c9629
commit 6071062289
2 changed files with 11 additions and 12 deletions

View File

@@ -69,7 +69,7 @@ keymap.backspace = function(count)
return ''
end
local keys = {}
table.insert(keys, keymap.t(string.rep(keymap.undojoin() .. '<Left><Del>', count)))
table.insert(keys, keymap.t(string.rep('<BS>', count)))
return table.concat(keys, '')
end