diff options
Diffstat (limited to 'modules/textadept/snippets.lua')
-rw-r--r-- | modules/textadept/snippets.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/textadept/snippets.lua b/modules/textadept/snippets.lua index 4827c8c8..9b8e8bda 100644 --- a/modules/textadept/snippets.lua +++ b/modules/textadept/snippets.lua @@ -67,11 +67,13 @@ local M = {} -- -- ### `\t` -- --- A single unit of indentation based on the user's indentation settings. +-- A single unit of indentation based on the user's indentation settings +-- (`buffer.use_tabs` and `buffer.tab_width`). -- -- ### `\n` -- --- A single set of line ending delimiters based on the user's end of line mode. +-- A single set of line ending delimiters based on the user's end of line mode +-- (`buffer.eol_mode`). -- -- [`io.popen()`]: http://www.lua.org/manual/5.2/manual.html#pdf-io.popen module('textadept.snippets')]=] |