Skip to content

Commit 75da5a4

Browse files
committed
Allow soft-wrapping of lines in the signature help window
This looks ugly, but at least no data is lost due to lines going off screen.
1 parent b5fe27b commit 75da5a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ycm/signature_help.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def UpdateSignatureHelp( state, signature_info ): # noqa
196196

197197
active_signature = int( signature_info.get( 'activeSignature', 0 ) )
198198
vim.eval( f"win_execute( { state.popup_win_id }, "
199-
f"'set syntax={ syntax } cursorline | "
199+
f"'set syntax={ syntax } cursorline wrap | "
200200
f"call cursor( [ { active_signature + 1 }, 1 ] )' )" )
201201

202202
return state

0 commit comments

Comments
 (0)