diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/textadept/editing.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index 32989206..ed2d6d0f 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -76,6 +76,7 @@ M.comment_string = {actionscript='//',ada='--',adpl='!',ansi_c='/*|*/',antlr='// -- @class table -- @name auto_pairs -- @usage textadept.editing.auto_pairs[60] = '>' -- pair '<' and '>' +-- @usage textadept.editing.auto_pairs = nil -- disable completely M.auto_pairs = {[40] = ')', [91] = ']', [123] = '}', [39] = "'", [34] = '"'} --- |