diff options
author | 2013-04-30 14:38:29 -0400 | |
---|---|---|
committer | 2013-04-30 14:38:29 -0400 | |
commit | 2b0dfd1cdb9002c1b248e95648161d939b5bc727 (patch) | |
tree | fa940ff08decddc1f869bdf3375bde567cb8c3a0 /modules/textadept/editing.lua | |
parent | d8c9d1f54c22a4fc00e607a61485ef9349b91fb5 (diff) | |
download | textadept-2b0dfd1cdb9002c1b248e95648161d939b5bc727.tar.gz textadept-2b0dfd1cdb9002c1b248e95648161d939b5bc727.zip |
More code cleanup.
Diffstat (limited to 'modules/textadept/editing.lua')
-rw-r--r-- | modules/textadept/editing.lua | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index baaa09ff..896d4b0d 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -86,12 +86,6 @@ M.braces = {[40] = 1, [41] = 1, [91] = 1, [93] = 1, [123] = 1, [125] = 1} -- @see TYPEOVER_CHARS M.typeover_chars = {[41] = 1, [93] = 1, [125] = 1, [39] = 1, [34] = 1} --- The current call tip. --- Used for displaying call tips. --- @class table --- @name current_call_tip -local current_call_tip = {} - -- Matches characters specified in char_matches. events.connect(events.CHAR_ADDED, function(c) if not M.AUTOPAIR then return end |