From 7286b8e8198d72d2642bd8fb9e988a77bb66a960 Mon Sep 17 00:00:00 2001 From: ujihisa Date: Fri, 19 Oct 2012 20:59:02 -0700 Subject: [PATCH] better English --- doc/neosnippet.txt | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/doc/neosnippet.txt b/doc/neosnippet.txt index 1c9696c..4415482 100644 --- a/doc/neosnippet.txt +++ b/doc/neosnippet.txt @@ -374,32 +374,33 @@ Alias feature is available. The separator is either ' ' or ','. alias hoge hogera hogehoge < Synchronized placeholder feature is supported. $1 is synchronized to ${1}. -When you jump next, it is synchronized. $0 is last jump placeholder. +When you jump next, it will be synchronized. $0 will be the final jump +placeholder. -The placeholder value can't contain new lines. Below snippet is illegal: +The placeholder value can't contain new lines. The snippet below isn't valid: > snippet test ${1:constructor: (${2:args\}) -> ${3:# do smth}} < -Multi snippet feature is supported in snipMate. -neosnippet substitutes trigger and descriptions spaces to '_'. +Multi snippet feature in snipMate is available. +Neosnippet substitutes trigger and descriptions spaces to '_'. > snippet trigger description1 hoge snippet trigger description2 piyo < -You choose snippet or and expand it with +Choose snippets using or and expand it with |(neosnippet_expand_or_jump)| key-mappings. -Nested placeholder feature is supported. -But must escape inner "}". "\" is eacape sequence. +Nested placeholder feature is available, But you must escape inner "}". "\" is +the eacape sequence. > snippet div
${3}
${4} < -In following snippet, you must escape "}" twice. +You must escape "}" twice in following case. > snippet catch prev_word '^' @@ -409,7 +410,7 @@ Because ${1:} substitutes the pattern to "/${2:pattern: empty, E484, Vim(cmdname):{errmsg\}}" and ${2:} substitutes the pattern to "pattern: empty, E484, Vim(cmdname):{errmsg}" -If you use hard tab for indentation in snippet file, neosnippet will use +If you use hard-tab for indentation in snippet file, neosnippet will use 'shiftwidth' instead of Vim indent plugin. This feature is useful while some languages' indent files can not work very well (e.g.: PHP, Python). >