vim-jp / vim-go-extra

Extra plugin for golang
90 stars 11 forks source link

Multiple Godoc buffer #18

Open koron opened 8 years ago

koron commented 8 years ago

Currently :Godoc opens a document in single buffer. But I want to open documents in multiple buffers sometimes.

koron commented 8 years ago

How about use :Godoc! to open a document with a new buffer.

:Godoc net/http
" open net/http

:Godoc crypt/tls
" reuse previous buffer and open crypt/tls

:Godoc! net/http
" open net/http with new buffer