Skip to content

Commit 84361bd

Browse files
committed
feat!: disable auto_show documentation by default, use <C-space> to toggle
1 parent a5145ae commit 84361bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lua/blink/cmp/config.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ local config = {
144144
select_prev = { '<Up>', '<C-p>' },
145145
select_next = { '<Down>', '<C-n>' },
146146

147-
show_documentation = {},
148-
hide_documentation = {},
147+
show_documentation = '<C-space>',
148+
hide_documentation = '<C-space>',
149149
scroll_documentation_up = '<C-b>',
150150
scroll_documentation_down = '<C-f>',
151151

@@ -271,7 +271,7 @@ local config = {
271271
autocomplete_north = { 'e', 'w', 'n', 's' },
272272
autocomplete_south = { 'e', 'w', 's', 'n' },
273273
},
274-
auto_show = true,
274+
auto_show = false,
275275
auto_show_delay_ms = 500,
276276
update_delay_ms = 100,
277277
},

0 commit comments

Comments
 (0)