-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDefault.sublime-settings
36 lines (27 loc) · 1.21 KB
/
Default.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"goguru_version" : "0.1.22", // DO NOT MODIFY
// Please do not edit this file, instead use the user config.
// use golangconfig, if false then shellenv will be used to get golang environment variables
"goguru_use_golangconfig": false,
// adds to the guru_scope the current package of the the working file
"goguru_use_current_package" : true,
// besides showing the result, jump directly to the definition
"goguru_jumpto_definition": false,
// The output can either be one of: 'buffer', 'output_panel'
// Buffers can hold results from more than one invocation
// Output panels sit underneath the editor area and are easily dismissed
"goguru_output": "output_panel",
// print debug info to the terminal
"goguru_debug": false,
// Set guru's output to json
"goguru_json": false,
// an array of scopes of analysis for guru.
// e.g (for github.com/juju/juju) "guru_scope": ["github.com/juju/juju/cmd/juju", "github.com/juju/juju/cmd/jujud"]
"goguru_scope": [],
// an array of build tags of analyzed source files
"goguru_tags": [],
// env overwrites the default shell environment vars
// e.g "env": { "GOPATH": "$HOME/go/bin:$PATH" }
// not used when goguru_use_golangconfig is set to true
"goguru_env": {}
}