1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-16 05:51:10 +01:00

fix(plugins/cmp): allow negative values in window.completion.col_offset

This commit is contained in:
mrtnvgr 2024-03-07 20:20:55 +07:00 committed by Gaétan Lepage
parent c59f002ef7
commit 61858556ec

View file

@ -300,7 +300,7 @@ with lib; {
See |'scrolloff'|. See |'scrolloff'|.
''; '';
col_offset = helpers.defaultNullOpts.mkUnsignedInt 0 '' col_offset = helpers.defaultNullOpts.mkInt 0 ''
Offsets the completion window relative to the cursor. Offsets the completion window relative to the cursor.
''; '';