improves the readme example section
This commit is contained in:
parent
ab79760f3f
commit
7d90008c75
24
README.md
24
README.md
@ -13,13 +13,13 @@ name.
|
|||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
To install this Vim plug-in it is recommended to use one of the popular package
|
To install neosnippet and other Vim plug-ins it is recommended to use one of the
|
||||||
managers for Vim, rather than installing by drag and drop all required files
|
popular package managers for Vim, rather than installing by drag and drop all
|
||||||
into your `.vim` folder.
|
required files into your `.vim` folder.
|
||||||
|
|
||||||
### Manual (not recommended)
|
### Manual (not recommended)
|
||||||
|
|
||||||
1. Install [Neocomplecache](https://github.com/Shougo/neocomplcache) first.
|
1. Install the [Neocomplecache](https://github.com/Shougo/neocomplcache) plugin first.
|
||||||
2. Put files in your Vim directory (usually `~/.vim/` or
|
2. Put files in your Vim directory (usually `~/.vim/` or
|
||||||
`%PROGRAMFILES%/Vim/vimfiles` on Windows).
|
`%PROGRAMFILES%/Vim/vimfiles` on Windows).
|
||||||
|
|
||||||
@ -50,10 +50,9 @@ NeoBundle 'Shougo/neosnippet.git'
|
|||||||
Configuration
|
Configuration
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
Here is an example `~/.vimrc` configuration for Neosnippet. It is assumed
|
This is an example `~/.vimrc` configuration for Neosnippet. It is assumes you
|
||||||
you already have Neocomplecache configured.
|
already have Neocomplecache configured. With the settings of the example, you
|
||||||
|
can use the following keys:
|
||||||
With these settings, you will use the following keys:
|
|
||||||
|
|
||||||
* `C-k` to select-and-expand a snippet from the Neocomplecache popup (Use `C-n`
|
* `C-k` to select-and-expand a snippet from the Neocomplecache popup (Use `C-n`
|
||||||
and `C-p` to select it). `C-k` can also be used to jump to the next field in
|
and `C-p` to select it). `C-k` can also be used to jump to the next field in
|
||||||
@ -76,12 +75,13 @@ endif
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want to use a different collection of snippets other than the built-in
|
If you want to use a different collection of snippets than the
|
||||||
ones, such as [Honza's Snippets](https://github.com/honza/snipmate-snippets), then you
|
built-in ones, then you can set a path to the snippets with
|
||||||
can set the `g:neosnippet#snippets_directory` variable.
|
the `g:neosnippet#snippets_directory` variable (e.g [Honza's
|
||||||
|
Snippets](https://github.com/honza/snipmate-snippets))
|
||||||
|
|
||||||
```vim
|
```vim
|
||||||
" Tell Neosnippet about these snippets
|
" Tell Neosnippet about the other snippets
|
||||||
let g:neosnippet#snippets_directory='~/.vim/bundle/snipmate-snippets/snippets'
|
let g:neosnippet#snippets_directory='~/.vim/bundle/snipmate-snippets/snippets'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user