From 89f7d7c37c97d316305e380f944f2e77019578ce Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sat, 26 Feb 2011 12:07:49 -0500 Subject: Use Ctrl+H for showing apidoc in cpp and lua modules. --- modules/cpp/commands.lua | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'modules/cpp') diff --git a/modules/cpp/commands.lua b/modules/cpp/commands.lua index fa876ef7..a74d83a5 100644 --- a/modules/cpp/commands.lua +++ b/modules/cpp/commands.lua @@ -14,8 +14,8 @@ module('_m.cpp.commands', package.seeall) -- fields and functions. -- + `Ctrl+I`: (Windows and Linux) Autocomplete symbol. -- + `~`: (Mac OSX) Autocomplete symbol. --- + `Tab`: When the caret is to the right of a `(` in a known function call, --- show a calltip with documentation for the function. +-- + `Ctrl+H`: Show documentation for the selected symbol or the symbol under +-- the caret. -- + `Shift+Return`: Add ';' to line end and insert newline. local m_editing, m_run = _m.textadept.editing, _m.textadept.run @@ -48,12 +48,7 @@ if type(keys) == 'table' then buffer:new_line() end }, [not OSX and 'ci' or '~'] = { cppsense.complete, cppsense }, - ['\t'] = { function() - if string.char(buffer.char_at[buffer.current_pos - 1]) ~= '(' then - return false - end - return cppsense:show_apidoc() - end }, + ch = { cppsense.show_apidoc, cppsense }, } end -- cgit v1.2.3