Skip to content

Commit 659fc2e

Browse files
committed
fix(telescope): AM/PM were being chopped off
1 parent 615d0d3 commit 659fc2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/opencode/ui/base_picker.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ local function telescope_ui(opts)
105105
finder = finders.new_table({ results = opts.items, entry_maker = make_entry }),
106106
sorter = conf.generic_sorter({}),
107107
layout_config = opts.width and {
108-
width = opts.width + 4, -- extra space for telescope UI
108+
width = opts.width + 7, -- extra space for telescope UI
109109
} or nil,
110110
attach_mappings = function(prompt_bufnr, map)
111111
actions.select_default:replace(function()

0 commit comments

Comments
 (0)