fix doc 80 chars limit

This commit is contained in:
Stanislav Seletskiy 2015-07-17 19:30:55 +06:00
parent a39f3c241a
commit 175e3ba521

View File

@ -1473,8 +1473,8 @@ variable method 'snip.cursor.set(line, column)' must be called with the
desired cursor position. In that case UltiSnips will not remove any matched desired cursor position. In that case UltiSnips will not remove any matched
trigger text and it should be done manually in action code. trigger text and it should be done manually in action code.
To addition to the scope variables defined above 'snip.visual_content' will be also To addition to the scope variables defined above 'snip.visual_content' will be
declared and will contain text that was selected before snippet expansion also declared and will contain text that was selected before snippet expansion
(similar to $VISUAL placeholder). (similar to $VISUAL placeholder).
Following snippet will be expanded at 4 spaces indentation level no matter Following snippet will be expanded at 4 spaces indentation level no matter
@ -1518,8 +1518,9 @@ Variables 'snip.snippet_start' and 'snip.snippet_end' will be defined at the
action code scope and will point to positions of the start and end of expanded action code scope and will point to positions of the start and end of expanded
snippet accordingly in the form '(line, column)'. snippet accordingly in the form '(line, column)'.
Note: 'snip.snippet_start' and 'snip.snippet_end' will automatically adjust to the Note: 'snip.snippet_start' and 'snip.snippet_end' will automatically adjust to
correct positions if post-action will insert or delete lines before expansion. the correct positions if post-action will insert or delete lines before
expansion.
Following snippet will expand to method definition and automatically insert Following snippet will expand to method definition and automatically insert
additional newline after end of the snippet. It's very useful to create a additional newline after end of the snippet. It's very useful to create a