aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2016-04-16 12:17:47 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2016-04-16 12:17:47 -0400
commit147dcbd2576ce2d047eb239cb74cdb802e1ddf1e (patch)
tree9995063851d17d1c94dbdd5229b87a1a5d924ed7 /modules
parent180b3ebad146e819fecc392e8b322820bc2e15e6 (diff)
downloadtextadept-147dcbd2576ce2d047eb239cb74cdb802e1ddf1e.tar.gz
textadept-147dcbd2576ce2d047eb239cb74cdb802e1ddf1e.zip
`events.CHAR_ADDED` emits a character code, not a byte.
Diffstat (limited to 'modules')
-rw-r--r--modules/textadept/editing.lua8
-rw-r--r--modules/textadept/run.lua4
2 files changed, 6 insertions, 6 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua
index 2f6062b7..06776219 100644
--- a/modules/textadept/editing.lua
+++ b/modules/textadept/editing.lua
@@ -140,9 +140,9 @@ M.autocompleters = {}
M.api_files = {}
-- Matches characters specified in char_matches.
-events.connect(events.CHAR_ADDED, function(byte)
+events.connect(events.CHAR_ADDED, function(code)
if not M.AUTOPAIR then return end
- local match = (M.char_matches[buffer:get_lexer(true)] or M.char_matches)[byte]
+ local match = (M.char_matches[buffer:get_lexer(true)] or M.char_matches)[code]
if match and buffer.selections == 1 then buffer:insert_text(-1, match) end
end)
@@ -182,8 +182,8 @@ events.connect(events.KEYPRESS, function(code)
end)
-- Auto-indent on return.
-events.connect(events.CHAR_ADDED, function(byte)
- if not M.AUTOINDENT or byte ~= 10 then return end
+events.connect(events.CHAR_ADDED, function(code)
+ if not M.AUTOINDENT or code ~= 10 then return end
local line = buffer:line_from_position(buffer.current_pos)
local i = line - 1
while i >= 0 and buffer:get_line(i):find('^[\r\n]+$') do i = i - 1 end
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index 42710813..fec77088 100644
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -264,9 +264,9 @@ events.connect(events.BUILD_OUTPUT, print_output)
function M.stop() if M.proc then M.proc:kill() end end
-- Send line as input to process stdin on return.
-events.connect(events.CHAR_ADDED, function(byte)
+events.connect(events.CHAR_ADDED, function(code)
local proc = M.proc
- if byte == 10 and proc and proc.status and proc:status() == 'running' and
+ if code == 10 and proc and proc.status and proc:status() == 'running' and
buffer._type == _L['[Message Buffer]'] then
local line_num = buffer:line_from_position(buffer.current_pos) - 1
proc:write((buffer:get_line(line_num)))