Skip to content

Commit

Permalink
hover - goxls: Go+
Browse files Browse the repository at this point in the history
  • Loading branch information
xushiwei committed Oct 20, 2023
1 parent cddb5a7 commit c6a6b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gopls/internal/lsp/hover.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func (s *Server) hover(ctx context.Context, params *protocol.HoverParams) (*prot
return mod.Hover(ctx, snapshot, fh, params.Position)
case source.Go:
return source.Hover(ctx, snapshot, fh, params.Position)
case source.Gop:
case source.Gop: // goxls: Go+
return source.GopHover(ctx, snapshot, fh, params.Position)
case source.Tmpl:
return template.Hover(ctx, snapshot, fh, params.Position)
Expand Down

0 comments on commit c6a6b4c

Please sign in to comment.