fix: add option to specify picker layout for snacks picker used in Opencode #167
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The default snacks picker layout is used for various sources that is not always ideal for this plugin's use case. E.g., many layouts have preview = 'file', which is useless for the session_picker. There's no way to disable preview just for Opencode's snacks picker without affecting other uses of snacks picker for other sources. Looks like it's because of this change
For example,
{ "folke/snacks.nvim", opts = { picker = { layout = { preset = "ivy" } } } }The
ivypreset has a preview window that doesn't work with session_picker, but I don't want to disable it because the default picker layout is used for a bunch of builtin sources where I rely on the file preview.This change allows users to specify a layout in the config. I only added the option for snacks, but we can extend it to the other pickers as well.
There's 3 main ways on how to change the snacks picker layout
Don't specify the new options -> it'll just default to the user's snack picker layout preset
Specify the new options for opencode, e.g.
Specify a preset available for snacks picker OR a custom layout