diff options
author | 2012-02-10 13:55:34 -0500 | |
---|---|---|
committer | 2012-02-10 13:55:34 -0500 | |
commit | b3d0b5defde02020ad41225b4b11e82c4ea90af9 (patch) | |
tree | a3f3fbfd41b21757630c1e59cbf9d9ed801fa983 /modules/cpp/init.lua | |
parent | fbcb4f5c1dcfa2ffa45fb82a3bad2e543ee071e9 (diff) | |
download | textadept-b3d0b5defde02020ad41225b4b11e82c4ea90af9.tar.gz textadept-b3d0b5defde02020ad41225b4b11e82c4ea90af9.zip |
Update LuaDoc with new formatting.
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. |