vim-vgo icon indicating copy to clipboard operation
vim-vgo copied to clipboard

Fails to properly format go.mod file

Open myitcv opened this issue 7 years ago • 2 comments

Thanks very much for starting this.

If I create a simple go.mod file:

cat <<EOD > go.mod
module "rubbish.com/blah"

require (
	"github.com/kisielk/gotool" v1.0.0
)

open in Vim and then gg=G to reformat I'm left with:

module "rubbish.com/blah"

require (
    "github.com/kisielk/gotool" v1.0.0
    )

Am I doing something wrong here?

Thanks

myitcv avatar Apr 10 '18 10:04 myitcv

@myitcv I surprised users using this project lol 😮

BTW, It seems to indent issue. I'll dig it. Thanks.

zchee avatar Apr 10 '18 10:04 zchee

@zchee I'm seeing what vgo can do!

myitcv avatar Apr 10 '18 10:04 myitcv