diff options
author | max397574 <[email protected]> | 2021-10-24 18:18:14 +0200 |
---|---|---|
committer | max397574 <[email protected]> | 2021-10-24 18:18:14 +0200 |
commit | feec31acc53a29f499fecf7573d55b501548f63c (patch) | |
tree | 3a559351111e19d0c81788842da17529908eb216 | |
parent | e54b4af46f8a658e4d3c5144828c7859a59461cc (diff) |
fix(mappings): 🐛removed to big empty space
-rw-r--r-- | lua/startup.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lua/startup.lua b/lua/startup.lua index 23a4917..69f6ae8 100644 --- a/lua/startup.lua +++ b/lua/startup.lua @@ -184,9 +184,6 @@ function M.mapping_names(mappings) local length = utils.longest_line(strings) + 18 -- local length = vim.o.columns * 0.4 for name, cmd in pairs(mappings) do - if settings.options.empty_lines_between_mappings then - table.insert(mapnames, " ") - end if settings.options.mapping_keys then local space = utils.spaces(length - #cmd[2] - #name) table.insert(mapnames, name .. space .. cmd[2]) |