Skip to content

Commit

Permalink
update to latest gopls version 0.17.1 (#88)
Browse files Browse the repository at this point in the history
Co-authored-by: TerminalFi <[email protected]>
  • Loading branch information
github-actions[bot] and TerminalFi authored Jan 29, 2025
1 parent f8d0c0e commit 73e1581
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 52 deletions.
27 changes: 12 additions & 15 deletions LSP-gopls.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"-**/node_modules"
],

// templateExtensions gives the extensions of file names that are treateed
// templateExtensions gives the extensions of file names that are treated
// as template files. (The extension
// is the part of the file name after the final dot.)
//
Expand All @@ -70,12 +70,6 @@
//
"gopls.expandWorkspaceToModule": true,

// (experimental) allowImplicitNetworkAccess disables GOPROXY=off, allowing implicit module
// downloads rather than requiring user action. This option will eventually
// be removed.
//
"gopls.allowImplicitNetworkAccess": false,

// standaloneTags specifies a set of build constraints that identify
// individual Go source files that make up the entire main package of an
// executable.
Expand Down Expand Up @@ -104,7 +98,11 @@
//
"gopls.hoverKind": "FullDocumentation",

// linkTarget controls where documentation links go.
// linkTarget is the base URL for links to Go package
// documentation returned by LSP operations such as Hover and
// DocumentLinks and in the CodeDescription field of each
// Diagnostic.
//
// It might be one of:
//
// * `"godoc.org"`
Expand All @@ -117,13 +115,7 @@
//
"gopls.linkTarget": "pkg.go.dev",

// linksInHover controls the presence of documentation links
// in hover markdown.
//
// Its legal values are:
// - `false`, for no links;
// - `true`, for links to the `linkTarget` domain; or
// - `"gopls"`, for links to gopls' internal documentation viewer.
// linksInHover controls the presence of documentation links in hover markdown.
//
"gopls.linksInHover": true,

Expand Down Expand Up @@ -301,6 +293,11 @@
// be the prefix of the import path whose imports should be grouped
// separately.
//
// It is used when tidying imports (during an LSP Organize
// Imports request) or when inserting new ones (for example,
// during completion); an LSP Formatting request merely sorts the
// existing imports.
//
"gopls.local": "",

// gofumpt indicates if we should run gofumpt formatting.
Expand Down
2 changes: 1 addition & 1 deletion plugin/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.16.2'
VERSION = '0.17.1'
Loading

0 comments on commit 73e1581

Please sign in to comment.