Skip to content

Commit

Permalink
Merge pull request #58 from sublimelsp/update/workflow
Browse files Browse the repository at this point in the history
Update/workflow
  • Loading branch information
TerminalFi committed Jun 13, 2023
2 parents b1fb5fd + 2d7d24c commit 183119a
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 67 deletions.
41 changes: 9 additions & 32 deletions LSP-gopls.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -71,24 +71,6 @@
//
"gopls.expandWorkspaceToModule": true,

// (experimental) experimentalWorkspaceModule opts a user into the experimental support
// for multi-module workspaces.
//
// Deprecated: this feature is deprecated and will be removed in a future
// version of gopls (https://go.dev/issue/55331).
//
"gopls.experimentalWorkspaceModule": false,

// (experimental) experimentalPackageCacheKey controls whether to use a coarser cache key
// for package type information to increase cache hits. This setting removes
// the user's environment, build flags, and working directory from the cache
// key, which should be a safe change as all relevant inputs into the type
// checking pass are already hashed into the key. This is temporarily guarded
// by an experiment because caching behavior is subtle and difficult to
// comprehensively test.
//
"gopls.experimentalPackageCacheKey": true,

// (experimental) allowModfileModifications disables -mod=readonly, allowing imports from
// out-of-scope modules. This option will eventually be removed.
//
Expand Down Expand Up @@ -191,6 +173,14 @@
//
"gopls.symbolStyle": "Dynamic",

// symbolScope controls which packages are searched for workspace/symbol
// requests. The default value, "workspace", searches only workspace
// packages. The legacy behavior, "all", causes all loaded packages to be
// searched, including dependencies; this is more expensive and may return
// unwanted results.
//
"gopls.symbolScope": "all",

// analyses specify analyses that the user would like to enable or disable.
// A map of the names of analysis passes that should be enabled/disabled.
// A full list of analyzers that gopls uses can be found in
Expand Down Expand Up @@ -236,20 +226,7 @@
//
// This option must be set to a valid duration string, for example `"250ms"`.
//
"gopls.diagnosticsDelay": "250ms",

// (experimental) experimentalWatchedFileDelay controls the amount of time that gopls waits
// for additional workspace/didChangeWatchedFiles notifications to arrive,
// before processing all such notifications in a single batch. This is
// intended for use by LSP clients that don't support their own batching of
// file system notifications.
//
// This option must be set to a valid duration string, for example `"100ms"`.
//
// Deprecated: this setting is deprecated and will be removed in a future
// version of gopls (https://go.dev/issue/55332)
//
"gopls.experimentalWatchedFileDelay": "0s",
"gopls.diagnosticsDelay": "1s",

// (experimental) hints specify inlay hints that users want to see. A full list of hints
// that gopls uses can be found in
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.11.0'
VERSION = '0.12.2'
Loading

0 comments on commit 183119a

Please sign in to comment.