Skip to content

Commit

Permalink
fix DocumentURI error for gopls@v0.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yongcai committed Sep 19, 2024
1 parent 8b61f19 commit 5e23520
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ def InlayHints( request_id, request_data ):


def FilePathToUri( file_name ):
return urljoin( 'file:', pathname2url( file_name ) )
return urljoin( 'file://', pathname2url( file_name ) )


def UriToFilePath( uri ):
Expand Down

0 comments on commit 5e23520

Please sign in to comment.