We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73fea61 commit 0f49050Copy full SHA for 0f49050
1 file changed
lua/opencode/ui/formatter/utils.lua
@@ -86,7 +86,7 @@ end
86
87
local function build_diff_gutter(line_numbers, width)
88
local line_number = line_numbers.new or line_numbers.old
89
- return string.format('%-' .. width .. 's', line_number and tostring(line_number) or '')
+ return string.format('%' .. width .. 's', line_number and tostring(line_number) or '')
90
end
91
92
local function add_diff_line(output, line, line_numbers, width)
0 commit comments