diff options
Diffstat (limited to 'modules/textadept/snippets.lua')
-rw-r--r-- | modules/textadept/snippets.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/textadept/snippets.lua b/modules/textadept/snippets.lua index e373e6aa..6fa03c06 100644 --- a/modules/textadept/snippets.lua +++ b/modules/textadept/snippets.lua @@ -23,8 +23,8 @@ local M = {} -- -- Represents a placeholder, where *n* is an integer and *text* is default -- placeholder text. Textadept moves the caret to placeholders in numeric order --- each time it calls [`_insert()`](#_insert), finishing at either the "%0" --- placeholder if it exists or at the end of the snippet. Examples are +-- each time it calls [`textadept.snippets._insert()`](), finishing at either +-- the "%0" placeholder if it exists or at the end of the snippet. Examples are -- -- snippets['foo'] = 'foobar%1(baz)' -- snippets['bar'] = 'start\n\t%0\nend' @@ -65,12 +65,12 @@ local M = {} -- ### `\t` -- -- A single unit of indentation based on the user's indentation settings --- (`buffer.use_tabs` and `buffer.tab_width`). +-- ([`buffer.use_tabs`]() and [`buffer.tab_width`]()). -- -- ### `\n` -- -- A single set of line ending delimiters based on the user's end of line mode --- (`buffer.eol_mode`). +-- ([`buffer.eol_mode`]()). -- -- [`io.popen()`]: http://www.lua.org/manual/5.2/manual.html#pdf-io.popen module('textadept.snippets')]=] |