aboutsummaryrefslogtreecommitdiff
path: root/core/ext/key_commands.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-06-10 23:42:30 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2010-06-10 23:42:30 -0400
commit2ddb3c692bebf8011207f8c961ea5c89fb8beabb (patch)
treec295fa70bd72596435ffbf8bedb6885c153b0abd /core/ext/key_commands.lua
parentfbe7fcf467bd7f947da72cc7a098728d4a6bf364 (diff)
downloadtextadept-2ddb3c692bebf8011207f8c961ea5c89fb8beabb.tar.gz
textadept-2ddb3c692bebf8011207f8c961ea5c89fb8beabb.zip
Renamed _m.textadept.lsnippets to _m.textadept.snippets.
Diffstat (limited to 'core/ext/key_commands.lua')
-rw-r--r--core/ext/key_commands.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ext/key_commands.lua b/core/ext/key_commands.lua
index 1df0de40..aed8d4a0 100644
--- a/core/ext/key_commands.lua
+++ b/core/ext/key_commands.lua
@@ -234,7 +234,7 @@ if not MAC then
keys.cr = { m_run.run }
keys.cR = { m_run.compile }
-- Snippets
- local m_snippets = _m.textadept.lsnippets
+ local m_snippets = _m.textadept.snippets
keys['\t'] = { m_snippets.insert }
keys['s\t'] = { m_snippets.prev }
keys.cai = { m_snippets.cancel_current }
@@ -396,7 +396,7 @@ else
keys.cr = { m_run.run }
keys.cR = { m_run.compile }
-- Snippets
- local m_snippets = _m.textadept.lsnippets
+ local m_snippets = _m.textadept.snippets
keys['\t'] = { m_snippets.insert }
keys['s\t'] = { m_snippets.prev }
keys.cai = { m_snippets.cancel_current }