Vim-go: All :Go commands missing

Created on 24 Feb 2016  路  8Comments  路  Source: fatih/vim-go

All :Go commands are missing except :GoInstall/UpdateBinaries and :GoPath. I am running Vim 7.3 and installed via Vundle. Need any data? Found another related issue, but really I cannot switch a plugin manager for the sake of one plugin, so I would like to help to troubleshoot why the issue happens.

Most helpful comment

Just for the record: I'm sure it's this line filetype plugin indent on that should really be filetype plugin on (omitting the indent).

All 8 comments

with vim-plug the plugin works, but that sounds like a workaround to existing issue.

Hi @nerakhon There is no issue, it works already. Your vim setup is broken imho. The :Go commands are there if you install it correctly. Thanks.

Sorry but I cannot agree, the same issue happens on a fresh OS account with no vim settings except vundle and your plugin. We should really debug this or please remove vundle from your supported plugin managers as it is evidently broken.

But after using vim-plug except the bug I logged for the messed up terminal it's a great tool, really good job!

No it works. Read https://github.com/fatih/vim-go/wiki/FAQ-Troubleshooting. Otherwise I would expect hundreds of issues from other vundle users that it doesn't work (which is not the case). I still think you have wrongly configured vimrc.

I went through the troubleshooting and non applies, here is a full .vimrc the minimalistic one:

set nocompatible              " be iMproved, required
filetype off                  " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'fatih/vim-go'


" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" Put your non-Plugin stuff after this line

filetype plugin indent on

then I execute :PluginInstall and installation succeeds with no errors.
Except filetype plugin indent on it's exact requirements from vundle

I experience the same problem. I have syntax highlighting and code check on save etc, but the Go* are not showing except the one mentioned up top. I used pathogen to install vim-go and it is a completely fresh install of Ubuntu as well.

Same problem here

Just for the record: I'm sure it's this line filetype plugin indent on that should really be filetype plugin on (omitting the indent).

Was this page helpful?
0 / 5 - 0 ratings

Related issues

MattFlower picture MattFlower  路  4Comments

derekchiang picture derekchiang  路  3Comments

surest picture surest  路  3Comments

johnzeng picture johnzeng  路  3Comments

zhangjing picture zhangjing  路  3Comments