improves unite source and faq descriptions

This commit is contained in:
cpfaff 2012-10-31 10:43:08 +01:00
parent 448753ca03
commit edf1f563e1
1 changed files with 19 additions and 17 deletions

View File

@ -534,13 +534,14 @@ E484, Vim(cmdname):{errmsg}"
If you create a snippet file and prepend the filename with a "_" neosnippet If you create a snippet file and prepend the filename with a "_" neosnippet
treats the snippets inside the file as global. This means that they will be treats the snippets inside the file as global. This means that they will be
available for all file types (e.g _.snip). You can include snippet files with available for all file types (e.g _.snip). You can include other snippet files
from within a snippet file with.
> >
include c.snip include c.snip
< <
or if you want to include a whole directory with file type snippets. Or if you want to include a whole directory with file type snippets.
> >
include javascript/* include javascript/*
@ -557,7 +558,6 @@ detects this. If you want to overwrite a snippet explicitly, please use:
After that you can redefine the snippet. But this does not work if you include After that you can redefine the snippet. But this does not work if you include
external snippet files. There will be no warning when snippets get overwritten. external snippet files. There will be no warning when snippets get overwritten.
Multi snippet feature in snipMate is available. Multi snippet feature in snipMate is available.
Neosnippet substitutes trigger and descriptions spaces to '_'. Neosnippet substitutes trigger and descriptions spaces to '_'.
> >
@ -582,12 +582,14 @@ UNITE SOURCES *neosnippet-unite-sources*
*neosnippet-unite-source-snippet* *neosnippet-unite-source-snippet*
snippet snippet
The candidates are neosnippet snippets. The kinds are The candidates of the snippet source are neosnippet snippets.
"snippet". Normally used in and their kind is "snippet". You can use the snippet source
|<Plug>(neosnippet_start_unite_snippet)| mappings. with the mapping |<Plug>(neosnippet_start_unite_snippet)|.
But you can execute it by ":Unite snippet". But you can also execute it by ":Unite snippet". The snippet
You can edit snippet file in "edit" action. source offers an edit action you can use to edit the snippet
Examples: files.
Example:
> >
imap <C-s> <Plug>(neosnippet_start_unite_snippet) imap <C-s> <Plug>(neosnippet_start_unite_snippet)
< <
@ -601,26 +603,26 @@ snippet *neosnippet-unite-action-snippet*
============================================================================== ==============================================================================
FAQ *neosnippet-faq* FAQ *neosnippet-faq*
Q: Don't expanded snippet trigger after (, [, " etc...: Q: What if I do not like to expand a snippet trigger after (, [, " etc...:
A: You should use "options word" in snippet definition. "options word" means A: You should use "options word" in the snippet definition. This changes the
this snippet is expanded by word boundary. expansion behavior to a word boundary.
> >
snippet date snippet date
options word options word
`strftime("%d %b %Y")` `strftime("%d %b %Y")`
< <
Q: Doesn't indent in expanded line: Q: Why does neosnippet not indent the expanded snippet?
A: You should use "options indent" in snippet definition. In default, A: You should use "options indent" in the snippet definition. In default,
neosnippet doesn't indent in expanded line. neosnippet doesn't indent the expanded line.
Q: Neosnippet conflicts with |LustyJuggler|. Q: What if Neosnippet conflicts with |LustyJuggler|.
http://www.vim.org/scripts/script.php?script_id=2050 http://www.vim.org/scripts/script.php?script_id=2050
A: Please try below settings: A: Please try below settings:
Note: But you must unmap in select mode mappings manually. Note: But you must unmap the mappings in select mode manually.
> >
let g:neosnippet#disable_select_mode_mappings = 0 let g:neosnippet#disable_select_mode_mappings = 0
< <