Skip to content

Commit

Permalink
config: disable g:go_imports_autosave by default
Browse files Browse the repository at this point in the history
  • Loading branch information
bhcleek committed Apr 24, 2020
1 parent b1a9a96 commit dc58a08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion autoload/go/config.vim
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ function! go#config#FmtAutosave() abort
endfunction

function! go#config#ImportsAutosave() abort
return get(g:, 'go_imports_autosave', 1)
return get(g:, 'go_imports_autosave', 0)
endfunction

function! go#config#SetFmtAutosave(value) abort
Expand Down
4 changes: 2 additions & 2 deletions doc/vim-go.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1404,9 +1404,9 @@ it's causing problems on some Vim versions. This has no effect if

*'g:go_imports_autosave'*

Use this option to auto |:GoImports| on save. By default it's enabled.
Use this option to auto |:GoImports| on save. By default it's disabled.
>
let g:go_imports_autosave = 1
let g:go_imports_autosave = 0
<
*'g:go_imports_mode'*

Expand Down

0 comments on commit dc58a08

Please sign in to comment.