aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/keys.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2012-07-21 14:12:27 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2012-07-21 14:12:27 -0400
commit7db3af04cffe78db907d90330adf9929fa4cab32 (patch)
tree2b21d3be0700ab26e3efb1c9ba9ceee64e86db52 /modules/textadept/keys.lua
parent03f166897801c29e9357bce3214f02502eb7f252 (diff)
downloadtextadept-7db3af04cffe78db907d90330adf9929fa4cab32.tar.gz
textadept-7db3af04cffe78db907d90330adf9929fa4cab32.zip
More Lua code cleanup and API changes.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r--modules/textadept/keys.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index f38de109..6ec061e0 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -279,8 +279,8 @@ keys[not OSX and (not NCURSES and 'c|' or 'c\\')
or 'm|'] = m_textadept.filter_through.filter_through
-- Adeptsense.
keys[not OSX and (not NCURSES and 'c ' or 'c@')
- or 'aesc'] = m_textadept.adeptsense.complete_symbol
-keys[not NCURSES and 'ch' or 'mh'] = m_textadept.adeptsense.show_documentation
+ or 'aesc'] = m_textadept.adeptsense.complete
+keys[not NCURSES and 'ch' or 'mh'] = m_textadept.adeptsense.show_apidoc
if NCURSES then keys.mH = keys.mh end -- in case mh is used by GUI terminals
-- Snippets.
keys[not OSX and (not NCURSES and 'ck' or 'mk') or 'a\t'] = m_snippets._select