- Added FAQ section.

This commit is contained in:
Shougo Matsushita 2012-10-30 10:51:33 +09:00
parent 6ec0f14a87
commit d93a1a1e92
1 changed files with 15 additions and 0 deletions

View File

@ -34,6 +34,7 @@ Interface |neosnippet-interface|
Functions |neosnippet-functions|
Examples |neosnippet-examples|
Snippet syntax |neosnippet-snippet-syntax|
FAQ |neosnippet-faq|
Changelog |neosnippet-changelog|
==============================================================================
@ -485,6 +486,19 @@ snippet *neosnippet-unite-action-snippet*
edit Edit snippet
preview View snippet definition
==============================================================================
FAQ *neosnippet-faq*
Q: Don't expanded snippet trigger after (, [, " etc...:
A: You should use "options word" in snippet definition. "options word" means
this snippet is expanded by word boundary.
>
snippet date
options word
`strftime("%d %b %Y")`
<
==============================================================================
CHANGELOG *neosnippet-changelog*
@ -494,6 +508,7 @@ CHANGELOG *neosnippet-changelog*
- Fixed for alias.
- Implemented targetted placeholder.
- Improved documentation.
- Added FAQ section.
2012-10-29
- Improved parse of snippets file.