diff options
author | 2017-01-12 22:08:57 -0500 | |
---|---|---|
committer | 2017-01-12 22:08:57 -0500 | |
commit | 2a05bb5b79ca89386724584e7ce98ecc420b2cf1 (patch) | |
tree | 59d06f346103a45d1e8051b586ae6eb028773e2e /modules | |
parent | 8795a19358fa92e3d56141cff9a369f913d02c3a (diff) | |
download | textadept-2a05bb5b79ca89386724584e7ce98ecc420b2cf1.tar.gz textadept-2a05bb5b79ca89386724584e7ce98ecc420b2cf1.zip |
Updated LuaDoc; modules/textadept/editing.lua
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] = '"'} --- |