You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(eglot--sig-info [(:label"func(a ...interface{}) (n int, err error)":documentation"Println formats using the default formats for its operands and writes to standard output.Spaces are always added between operands and a newline is appended.It returns the number of bytes written and any write error encountered.":parameters [(:label"a []interface{}")])] 00)
Or to reproduce in a .go file - place the cursor on Println:
The go language server returns
func(a ...interface{}) (n int, err error)
,but the eldoc message which is displayed is
func(a ...interface{})
The issue is probably caused by this
replace-regexp-in-string
here https://github.com/joaotavora/eglot/blob/master/eglot.el#L1491To reproduce, run
Or to reproduce in a .go file - place the cursor on Println:
The text was updated successfully, but these errors were encountered: