aboutsummaryrefslogtreecommitdiff
path: root/lua/startup.lua
diff options
context:
space:
mode:
authormax397574 <[email protected]>2021-10-24 18:18:14 +0200
committermax397574 <[email protected]>2021-10-24 18:18:14 +0200
commitfeec31acc53a29f499fecf7573d55b501548f63c (patch)
tree3a559351111e19d0c81788842da17529908eb216 /lua/startup.lua
parente54b4af46f8a658e4d3c5144828c7859a59461cc (diff)
fix(mappings): 🐛removed to big empty space
Diffstat (limited to 'lua/startup.lua')
-rw-r--r--lua/startup.lua3
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])