Skip to content

Commit

Permalink
start disabling GS features by default
Browse files Browse the repository at this point in the history
they're pretty much all supported via margo.sh now
  • Loading branch information
DisposaBoy committed Jul 12, 2018
1 parent d149003 commit 9ecb027
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions GoSublime.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"autosave": true,

// Whether or not gscomplete(gocode) is enabled
"gscomplete_enabled": true,
"gscomplete_enabled": false,

// Whether or not gsfmt is enabled
"fmt_enabled": true,
"fmt_enabled": false,

// whether or not to indent with tabs (alignment is always done using spaces)
"fmt_tab_indent": true,
Expand All @@ -57,7 +57,7 @@
"ipc_timeout": 1,

// Whether or not gslint is enabled
"gslint_enabled": true,
"gslint_enabled": false,

// filter the kinds of lint checks that are done. supported kinds:
//
Expand Down Expand Up @@ -94,7 +94,7 @@

// Not Implemented
// Whether or not gslint is enabled
"lint_enabled": true,
"lint_enabled": false,

// Not Implemented
// list of linters to run
Expand Down Expand Up @@ -181,7 +181,7 @@

// whether or not to show function call tip in the status bar
// the same can be achieved ctrl+dot,ctrl+space using an output panel
"calltips": true,
"calltips": false,

// whether or not to use named imports when the basename of the import path doesn't match the pkg name
// e.g. gosubli.me/go-foo would be imported as:
Expand Down Expand Up @@ -312,7 +312,7 @@
//
"9o_aliases": {},

// what 9o command to run when (super or )ctrl+dot,ctrl+b us pressed
// what 9o command to run when (super or )ctrl+dot,ctrl+b is pressed
// e.g. ["go", "build"]
// the 9o command ^1 recalls the last command you ran manually
// see 9o help(ctrl+9 "help") for more details about what commands are supported
Expand Down
4 changes: 2 additions & 2 deletions gosubl/gs.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"comp_lint_enabled": False,
"comp_lint_commands": [],
"gslint_timeout": 0,
"calltips": True,
"calltips": False,
"autocomplete_snippets": False,
"autocomplete_tests": False,
"autocomplete_closures": False,
Expand All @@ -84,7 +84,7 @@
"autosave": True,
"build_command": [],
"lint_filter": [],
"lint_enbled": True,
"lint_enbled": False,
"linters": [],
"9o_instance": "",
"9o_color_scheme": "",
Expand Down

0 comments on commit 9ecb027

Please sign in to comment.