Skip to content

Commit 2a953bb

Browse files
committed
Disable function signature help menu
When I'm writing a function, it's distracting and disorienting to have the function's signature pop above my cursor with a help menu. It makes it harder to read the line above my cursor, which is often the line I just finished writing. If the help menu can be configured to go *below* my cursor, or if I get into a language where long function signatures are common, then this feature could be useful. But for now, not useful.
1 parent e0a49cc commit 2a953bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lua/plugins/blink-cmp-snippets.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ return { -- Autocompletion
101101
fuzzy = { implementation = 'lua' },
102102

103103
-- Shows a signature help window while you type arguments for a function
104-
signature = { enabled = true },
104+
signature = { enabled = false },
105105
},
106106
}

0 commit comments

Comments
 (0)