Skip to content

Commit

Permalink
Merge pull request #9 from visualfc/warning
Browse files Browse the repository at this point in the history
disable linkifyShowMessage
  • Loading branch information
xushiwei authored Oct 22, 2023
2 parents 1f8d256 + 3cde0a2 commit 8bee5c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/language/goLanguageServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,8 @@ async function passLinkifyShowMessageToGopls(cfg: LanguageServerConfig, goplsCon
const version = semver.parse(goplsVersion.version);
// The linkifyShowMessage option was added in v0.14.0-pre.1.
if ((version?.compare('0.13.99') ?? 1) > 0) {
goplsConfig['linkifyShowMessage'] = true;
// goxls: disable
//goplsConfig['linkifyShowMessage'] = true;
}
return goplsConfig;
}
Expand Down

0 comments on commit 8bee5c1

Please sign in to comment.