Skip to content

Commit 6522027

Browse files
Add snacks.nvim picker input to disabled file type default (#504)
1 parent 68f0e5c commit 6522027

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ use {
4747
``` lua
4848
{
4949
enabled = function(bufnr) return true end, -- control if auto-pairs should be enabled when attaching to a buffer
50-
disable_filetype = { "TelescopePrompt", "spectre_panel" },
50+
disable_filetype = { "TelescopePrompt", "spectre_panel", "snacks_picker_input" },
5151
disable_in_macro = true, -- disable when recording or executing a macro
5252
disable_in_visualblock = false, -- disable when insert after visual block mode
5353
disable_in_replace_mode = true,

lua/nvim-autopairs.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local default = {
1717
map_c_w = false,
1818
map_cr = true,
1919
enabled = nil,
20-
disable_filetype = { 'TelescopePrompt', 'spectre_panel' },
20+
disable_filetype = { 'TelescopePrompt', 'spectre_panel', 'snacks_picker_input' },
2121
disable_in_macro = true,
2222
disable_in_visualblock = false,
2323
disable_in_replace_mode = true,

0 commit comments

Comments
 (0)