Skip to content

Commit

Permalink
disable autoinst by default
Browse files Browse the repository at this point in the history
  • Loading branch information
DisposaBoy committed Mar 19, 2018
1 parent 4ffa847 commit 95ab28b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions GoSublime.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,10 @@

// whether or not MarGo may automatically run `go install` for packages that are missing
// when you `import`, or `autocomplete` them
"autoinst": true,
//
// NOTE: you're encouraged to enable the new version of margo
// and use a linter like `golang.GoInstall("-i")` instead of setting this to `true`.
"autoinst": false,

// commands to run on (post) save - list of objects of the form {"cmd": "...", "args": {...}}
// Any TextCommand may be run. Supported GS commands include:
Expand Down Expand Up @@ -323,7 +326,7 @@
"gohtml_extensions": [".html.go"],

// Export the listed environment variables to Sublime Text when the GoSublime settings change
// so the env vars GS loads through your shell and project are available to other plugins
// so the env vars GS loads through your shell and project are available to other plugins
// e.g. "export_env_vars": ["PATH"]
"export_env_vars": [],
}

0 comments on commit 95ab28b

Please sign in to comment.