diff options
author | 2007-08-15 01:22:21 -0400 | |
---|---|---|
committer | 2007-08-15 01:22:21 -0400 | |
commit | 8125e421f7b23bad6b849a2860ff7cdd8d8de095 (patch) | |
tree | 18e5545b3eab16f89e3a244ba7943a9dea1f5d32 /modules/textadept/key_commands.lua | |
parent | f9db3ae35e605298dfb593c26610c34739c4f776 (diff) | |
download | textadept-8125e421f7b23bad6b849a2860ff7cdd8d8de095.tar.gz textadept-8125e421f7b23bad6b849a2860ff7cdd8d8de095.zip |
Added new lsnippets textadept module, updated other modules to use it.
Diffstat (limited to 'modules/textadept/key_commands.lua')
-rw-r--r-- | modules/textadept/key_commands.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/key_commands.lua b/modules/textadept/key_commands.lua index c7239c7c..7493a6ec 100644 --- a/modules/textadept/key_commands.lua +++ b/modules/textadept/key_commands.lua @@ -63,11 +63,11 @@ keys.csae = { 'line_end_rect_extend', b } keys.csav = { 'page_down_rect_extend', b } keys.csay = { 'page_up_rect_extend', b } -local m_snippets = _m.textadept.snippets +local m_snippets = _m.textadept.lsnippets keys.ci = { m_snippets.insert } keys.csi = { m_snippets.cancel_current } keys.cai = { m_snippets.list } -keys.ai = { m_snippets.show_scope } +keys.ai = { m_snippets.show_style } local m_editing = _m.textadept.editing keys.cm = { m_editing.match_brace } |