Skip to content

Commit

Permalink
Merge pull request #1938 from fatih/fix-import
Browse files Browse the repository at this point in the history
import: fix adding import to empty imports
  • Loading branch information
fatih authored Sep 2, 2018
2 parents 35cb627 + 478418b commit 187fd63
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion autoload/go/import.vim
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ function! go#import#SwitchImport(enabled, localname, path, bang) abort
let packageline = line
let appendline = line

elseif linestr =~# '^import\s\+(\+)'
let appendline = line
let appendstr = qlocalpath
elseif linestr =~# '^import\s\+('
let appendstr = qlocalpath
let indentstr = 1
Expand Down Expand Up @@ -161,8 +164,16 @@ function! go#import#SwitchImport(enabled, localname, path, bang) abort
let linesdelta += 3
let appendstr = qlocalpath
let indentstr = 1
call append(appendline, appendstr)
elseif getline(appendline) =~# '^import\s\+(\+)'
call setline(appendline, 'import (')
call append(appendline + 0, appendstr)
call append(appendline + 1, ')')
let linesdelta -= 1
let indentstr = 1
else
call append(appendline, appendstr)
endif
call append(appendline, appendstr)
execute appendline + 1
if indentstr
execute 'normal! >>'
Expand Down

0 comments on commit 187fd63

Please sign in to comment.