aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/textadept/keys.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index eae664c8..6ea0c54a 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -632,5 +632,13 @@ setmetatable(keys.find_incremental, {__index = function(t, k)
if #k > 1 and k:find('^[cams]*.+$') then return end
ui.find.find_incremental(ui.command_entry:get_text()..k, true)
end})
+-- Show documentation for symbols in the Lua command entry.
+keys.lua_command[not CURSES and 'ch' or 'mh'] = function()
+ -- Temporarily change _G.buffer since ui.command_entry is the "active" buffer.
+ local buffer = _G.buffer
+ _G.buffer = ui.command_entry
+ textadept.editing.show_documentation()
+ _G.buffer = buffer
+end
return M