Fix expansion bug

This commit is contained in:
hrsh7th
2021-11-04 20:49:28 +09:00
parent 8c08bdf7a4
commit 01fcf869bb
2 changed files with 3 additions and 3 deletions

View File

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