diff options
Diffstat (limited to 'modules/cpp/init.lua')
-rw-r--r-- | modules/cpp/init.lua | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/modules/cpp/init.lua b/modules/cpp/init.lua index 0bcf280f..d8a573a5 100644 --- a/modules/cpp/init.lua +++ b/modules/cpp/init.lua @@ -13,16 +13,21 @@ module('_M.cpp')]] -- Markdown: -- ## Key Commands -- --- + `Ctrl+L, M` (`⌘L, M` on Mac OSX): Open this module for editing. --- + `.`: When to the right of a known symbol, show an autocompletion list of --- fields and functions. --- + `->`: When to the right of a known symbol, show an autocompletion list of --- fields and functions. --- + `Shift+Return` (`⇧↩`): Add ';' to line end and insert newline. +-- + `Ctrl+L, M` (`⌘L, M` on Mac OSX) +-- Open this module for editing. +-- + `.` +-- When to the right of a known symbol, show an autocompletion list of fields +-- and functions. +-- + `->` +-- When to the right of a known symbol, show an autocompletion list of fields +-- and functions. +-- + `Shift+Return` (`⇧↩`) +-- Add ';' to line end and insert newline. -- -- ## Fields -- --- * `sense`: The C/C++ [Adeptsense](_M.textadept.adeptsense.html). +-- * `sense` +-- The C/C++ [Adeptsense](_M.textadept.adeptsense.html). local m_editing, m_run = _M.textadept.editing, _M.textadept.run -- Comment string tables use lexer names. |