From 271e15370c7b6191e3edd0b1f2375e1c013323d9 Mon Sep 17 00:00:00 2001 From: Job79 Date: Sat, 29 Aug 2026 21:44:39 +0200 Subject: [PATCH] refactor: remove unneeded spaces --- plugin/10_options.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/plugin/10_options.lua b/plugin/10_options.lua index 6f673bc..1e7004f 100644 --- a/plugin/10_options.lua +++ b/plugin/10_options.lua @@ -55,10 +55,10 @@ Config.later(function() priority = 9999, severity = { min = 'WARN', max = 'ERROR' }, text = { - [vim.diagnostic.severity.ERROR] = ' ', - [vim.diagnostic.severity.WARN] = ' ', - [vim.diagnostic.severity.INFO] = ' ', - [vim.diagnostic.severity.HINT] = ' ', + [vim.diagnostic.severity.ERROR] = '', + [vim.diagnostic.severity.WARN] = '', + [vim.diagnostic.severity.INFO] = '', + [vim.diagnostic.severity.HINT] = '', }, }, underline = { severity = { min = 'HINT', max = 'ERROR' } }, @@ -71,11 +71,11 @@ Config.later(function() }) local dap_signs = { - DapBreakpoint = { text = ' ', texthl = 'DapBreakpoint', linehl = '', numhl = '' }, - DapBreakpointCondition = { text = ' ', texthl = 'DapBreakpointCondition', linehl = '', numhl = '' }, - DapLogPoint = { text = ' ', texthl = 'DapLogPoint', linehl = '', numhl = '' }, - DapStopped = { text = ' ', texthl = 'DapStopped', linehl = 'DapStoppedLine', numhl = '' }, - DapBreakpointRejected = { text = ' ', texthl = 'DapBreakpointRejected', linehl = '', numhl = '' }, + DapBreakpoint = { text = '', texthl = 'DapBreakpoint', linehl = '', numhl = '' }, + DapBreakpointCondition = { text = '', texthl = 'DapBreakpointCondition', linehl = '', numhl = '' }, + DapLogPoint = { text = '', texthl = 'DapLogPoint', linehl = '', numhl = '' }, + DapStopped = { text = '', texthl = 'DapStopped', linehl = 'DapStoppedLine', numhl = '' }, + DapBreakpointRejected = { text = '', texthl = 'DapBreakpointRejected', linehl = '', numhl = '' }, } for name, sign in pairs(dap_signs) do