Merge branch 'master' of github.com:Shougo/neosnippet
This commit is contained in:
commit
61e87acb1e
@ -121,8 +121,8 @@ alias \begin{overlay}
|
|||||||
|
|
||||||
snippet array
|
snippet array
|
||||||
alias \begin{array}
|
alias \begin{array}
|
||||||
\begin{array}
|
\begin{array}{${1}}
|
||||||
${1:TARGET}
|
${2:TARGET}
|
||||||
\end{array}
|
\end{array}
|
||||||
|
|
||||||
snippet slide
|
snippet slide
|
||||||
@ -153,7 +153,7 @@ snippet eqnarray*
|
|||||||
alias \begin{eqnarray*}
|
alias \begin{eqnarray*}
|
||||||
\begin{eqnarray*}
|
\begin{eqnarray*}
|
||||||
${1:TARGET}
|
${1:TARGET}
|
||||||
\end{eqnarray}
|
\end{eqnarray*}
|
||||||
|
|
||||||
snippet appendix
|
snippet appendix
|
||||||
alias \begin{appendix}
|
alias \begin{appendix}
|
||||||
@ -167,6 +167,12 @@ alias \begin{equation}
|
|||||||
${1:TARGET}
|
${1:TARGET}
|
||||||
\end{equation}
|
\end{equation}
|
||||||
|
|
||||||
|
snippet equation*
|
||||||
|
alias \begin{equation*}
|
||||||
|
\begin{equation*}
|
||||||
|
${1:TARGET}
|
||||||
|
\end{equation*}
|
||||||
|
|
||||||
snippet center
|
snippet center
|
||||||
alias \begin{center}
|
alias \begin{center}
|
||||||
\begin{center}
|
\begin{center}
|
||||||
|
@ -64,7 +64,7 @@ COMMANDS *neosnippet-commands*
|
|||||||
*:NeoSnippetMakeCache*
|
*:NeoSnippetMakeCache*
|
||||||
|
|
||||||
Creates a cache for the given [filetype] snippets. It
|
Creates a cache for the given [filetype] snippets. It
|
||||||
automatically choses the current buffer's file type unless you
|
automatically chooses the current buffer's file type unless you
|
||||||
specify one by [filetype].
|
specify one by [filetype].
|
||||||
|
|
||||||
*:NeoComplCacheCachingSnippets*
|
*:NeoComplCacheCachingSnippets*
|
||||||
@ -365,6 +365,7 @@ Example:
|
|||||||
snippet [name]
|
snippet [name]
|
||||||
abbr [abbreviation]
|
abbr [abbreviation]
|
||||||
alias [aliases]
|
alias [aliases]
|
||||||
|
regexp [pattern]
|
||||||
options [options]
|
options [options]
|
||||||
if ${1:condition}
|
if ${1:condition}
|
||||||
${2}
|
${2}
|
||||||
@ -407,7 +408,7 @@ Snippet Keywords:
|
|||||||
|
|
||||||
- options [options] (Optional)
|
- options [options] (Optional)
|
||||||
|
|
||||||
Options influece the snippet behavior. The possible options are:
|
Options influence the snippet behavior. The possible options are:
|
||||||
|
|
||||||
+ word This snippet expands by a word boundary. Note: To complete
|
+ word This snippet expands by a word boundary. Note: To complete
|
||||||
the trigger in snippets_complete, it must be word(digits or
|
the trigger in snippets_complete, it must be word(digits or
|
||||||
@ -442,7 +443,7 @@ The structure of a placeholder can be:
|
|||||||
- ${number:placeholder text}
|
- ${number:placeholder text}
|
||||||
|
|
||||||
Here the number of the placeholder and the placeholder text that are
|
Here the number of the placeholder and the placeholder text that are
|
||||||
seperated by a ":" are embraced by a pair of "{}". The text is displayed
|
separated by a ":" are embraced by a pair of "{}". The text is displayed
|
||||||
after the snippet expansion and gets replaced by your text. If you jump
|
after the snippet expansion and gets replaced by your text. If you jump
|
||||||
over the snippet and do not insert any text in that position the
|
over the snippet and do not insert any text in that position the
|
||||||
placeholder text remains there. This can be used as a standard value for a
|
placeholder text remains there. This can be used as a standard value for a
|
||||||
@ -459,7 +460,7 @@ The structure of a placeholder can be:
|
|||||||
|
|
||||||
- ${number:#:placeholder text}
|
- ${number:#:placeholder text}
|
||||||
|
|
||||||
Here the number is followd by the "#" character. If you jump over this
|
Here the number is followed by the "#" character. If you jump over this
|
||||||
placeholder and do not insert any text, the placeholder text will be
|
placeholder and do not insert any text, the placeholder text will be
|
||||||
removed.
|
removed.
|
||||||
|
|
||||||
@ -512,7 +513,7 @@ The structure of a placeholder can be:
|
|||||||
|
|
||||||
- $number
|
- $number
|
||||||
|
|
||||||
This is a synchronized placeholder. Sometimes it is required to repat a
|
This is a synchronized placeholder. Sometimes it is required to repeat a
|
||||||
value in several places inside a snippet. If you set the number of this
|
value in several places inside a snippet. If you set the number of this
|
||||||
placeholder to the same number as one of the other placeholders in the
|
placeholder to the same number as one of the other placeholders in the
|
||||||
snippet it will repeat its content. $1 is synchronized to ${1} and so on.
|
snippet it will repeat its content. $1 is synchronized to ${1} and so on.
|
||||||
|
Loading…
Reference in New Issue
Block a user