All Projects → vim-jp → Vim Go Extra

vim-jp / Vim Go Extra

Extra plugin for golang

Labels

Projects that are alternatives of or similar to Vim Go Extra

Vimrc
Meteor/Web development centric vim config
Stars: ✭ 83 (-7.78%)
Mutual labels:  viml
Nodejs Vagrant
Stars: ✭ 86 (-4.44%)
Mutual labels:  viml
Netrw.vim
Network oriented reading, writing, and browsing (keywords: netrw ftp scp)
Stars: ✭ 86 (-4.44%)
Mutual labels:  viml
Languagetool
Grammar checker for English, French, German (etc.) in Vim
Stars: ✭ 83 (-7.78%)
Mutual labels:  viml
Vim Jira Complete
AutoComplete JIRA issues in Vim
Stars: ✭ 85 (-5.56%)
Mutual labels:  viml
Distraction Free Writing Vim
Collection of configurations I use to for my distraction free editing environment in Vim
Stars: ✭ 86 (-4.44%)
Mutual labels:  viml
Vim Symfony
A vim plugin to handle symfony and all that stuff
Stars: ✭ 82 (-8.89%)
Mutual labels:  viml
Vim Etherpad
Plugin to enable collaborative edition on etherpad with the best editor
Stars: ✭ 89 (-1.11%)
Mutual labels:  viml
Vim
Stars: ✭ 85 (-5.56%)
Mutual labels:  viml
Twitvim
Twitter client for Vim
Stars: ✭ 86 (-4.44%)
Mutual labels:  viml
Jekyll.vim
Automate common Jekyll tasks from Vim
Stars: ✭ 83 (-7.78%)
Mutual labels:  viml
Vim Task
vim task plugin
Stars: ✭ 84 (-6.67%)
Mutual labels:  viml
Vimclojure Easy
Setting up VimClojure is easy!
Stars: ✭ 86 (-4.44%)
Mutual labels:  viml
Learn Vim
无废话极简版Vim学习笔记!文章按主题分拆为多个章节,并尽量控制每节的信息量;通过文字色彩和字体,将命令、快捷键突出显示;在每节结尾,提供一个命令列表,以便回顾文中介绍的重要命令。如果这些文章能对喜欢Vim的朋友有所益处,我将不胜荣幸。
Stars: ✭ 83 (-7.78%)
Mutual labels:  viml
Vim Jinja
Repository for Jinja support in vim.
Stars: ✭ 87 (-3.33%)
Mutual labels:  viml
Use vim as ide
use vim as IDE
Stars: ✭ 9,067 (+9974.44%)
Mutual labels:  viml
Vim Oblique
DEPRECATED Improved /-search (experimental)
Stars: ✭ 86 (-4.44%)
Mutual labels:  viml
Vim
我的VIM配置
Stars: ✭ 89 (-1.11%)
Mutual labels:  viml
Source Insight Vim
source-insight-like vim.
Stars: ✭ 88 (-2.22%)
Mutual labels:  viml
Bash Support.vim
BASH IDE -- Write and run BASH-scripts using menus and hotkeys.
Stars: ✭ 86 (-4.44%)
Mutual labels:  viml

Extra Vim plugins for Go

This is a collection of extra vim plugins for Go. This is based on go's official repository located at misc/vim. This plugins provides following feature:

  • :Godoc command to open documentation window.
  • :Fmt command to format current buffer.
  • :Import command to add import statement.

And if you has installed some go utilities, this will add runtime path to the vim plugins which is the utilities provides. Below is the list of supported utilities.

Installation

To install using pathogen.vim:

cd ~/.vim/bundle
git clone https://github.com/vim-jp/vim-go-extra.git

To install using Vundle:

" add this line to your .vimrc file
Plugin 'vim-jp/vim-go-extra'

To checkout the source from repository:

cd ~/.vim/bundle
git clone https://github.com/vim-jp/vim-go-extra.git

Configuration

A popular configuration is to gofmt Go source files when they are saved. To do that, add this line to the end of your $HOME/.vimrc.

autocmd FileType go autocmd BufWritePre <buffer> Fmt

License

Same as original plugins that go was provided. i.e. BSD

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].