Skip to content

Commit 2ef2f76

Browse files
authored
Fix #1024 (#1028)
Closes #1024
1 parent 87cd0e6 commit 2ef2f76

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

autoload/lsp/ui/vim/documentation.vim

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ function! s:show_documentation(event) abort
108108
let l:width = (l:width < 1 ? 1 : l:width)
109109

110110
let s:last_popup_id = nvim_open_win(l:buffer, v:false, {'relative': 'editor', 'anchor': l:anchor, 'row': l:row, 'col': l:col, 'height': l:height, 'width': l:width, 'style': 'minimal'})
111+
call nvim_win_set_option(s:last_popup_id, 'wrap', v:true)
111112
return
112113
endif
113114

0 commit comments

Comments
 (0)