Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc cleanup #987

Merged
merged 7 commits into from
Aug 2, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ command.
* `NeoBundle 'fatih/vim-go'`
* [Vundle](https://github.com/gmarik/vundle)
* `Plugin 'fatih/vim-go'`
* [Vim packages](http://vimhelp.appspot.com/repeat.txt.html#packages) (since Vim 7.4.1528)
* `git clone https://github.com/fatih/vim-go.git ~/.vim/pack/plugins/start/vim-go`
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does git create the directory if it doesn't exist? (didn't tested it just asking here lazily :))

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah:

[~]% ls ~/cocunuts
/home/martin/coconuts: No such file or directory.

[~]% git clone git@github.com:machakann/vim-vimhelplint.git ~/coconuts/with/bananes/are/nice/
Cloning into '/home/martin/coconuts/with/bananes/are/nice'...
remote: Counting objects: 100, done.
remote: Total 100 (delta 0), reused 0 (delta 0), pack-reused 100
Receiving objects: 100% (100/100), 21.79 KiB | 0 bytes/s, done.
Resolving deltas: 100% (27/27), done.
Checking connectivity... done.

[~]% ls ~/coconuts/with/bananes/are/nice/
/home/martin/coconuts/with/bananes/are/nice:
doc/             ftplugin/        README.md        syntax_checkers/ 


Please be sure all necessary binaries are installed (such as `gocode`, `godef`,
`goimports`, etc.). You can easily install them with the included
Expand Down
6 changes: 3 additions & 3 deletions doc/vim-go.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,21 @@ add the appropriate lines and execute the plugin's install command.

git clone https://github.com/fatih/vim-go.git ~/.vim/bundle/vim-go
<

* https://github.com/junegunn/vim-plug >

Plug 'fatih/vim-go'

<
* https://github.com/Shougo/neobundle.vim >

NeoBundle 'fatih/vim-go'
<

* https://github.com/gmarik/vundle >

Plugin 'fatih/vim-go'

* Vim |packages| (since Vim 7.4.1528)
>
git clone https://github.com/fatih/vim-go.git ~/.vim/pack/plugins/start/vim-go
<
* Manual >

Expand Down