From d93a1a1e929f92394fd1b4450f321aee6d722559 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Tue, 30 Oct 2012 10:51:33 +0900 Subject: [PATCH] - Added FAQ section. --- doc/neosnippet.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/neosnippet.txt b/doc/neosnippet.txt index 0bfd534..d01da34 100644 --- a/doc/neosnippet.txt +++ b/doc/neosnippet.txt @@ -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.