aboutsummaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-12-14 10:08:09 -0500
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-12-14 10:08:09 -0500
commit9a91848fc752a364f16724f564288bcc20d6a63a (patch)
tree52ac624111cf79a0f0fc2be5ccd334b49e2d4937 /modules
parent0f9d6f917173b1a22559fc42d12bbfc9bf4e783c (diff)
Propagate Tab key to insert \t if necessary for previous commit.
Diffstat (limited to 'modules')
-rw-r--r--modules/textadept/snippets.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/snippets.lua b/modules/textadept/snippets.lua
index d16b2ae7..cc423462 100644
--- a/modules/textadept/snippets.lua
+++ b/modules/textadept/snippets.lua
@@ -561,7 +561,7 @@ function M.insert(text)
local trigger
if not assert_type(text, 'string/nil', 1) then
trigger, text = find_snippet()
- if type(text) == 'table' then return end -- assume lexer table and ignore
+ if type(text) == 'table' then return false end -- assume lexer table and ignore
if type(text) == 'function' then text = text() end
assert_type(text, 'string/nil', trigger or '?')
end