diff options
author | 2012-07-21 09:34:51 -0400 | |
---|---|---|
committer | 2012-07-21 09:34:51 -0400 | |
commit | 5a50a7e55b870ae66a6bb69fcd3a7bd1841f3d9b (patch) | |
tree | 7b7d99c5a42cf7597d00815f941b8070439f32d7 /modules/textadept/keys.lua | |
parent | 53de5fafa2344ae17a0457a34c7a6a866f1020d1 (diff) | |
download | textadept-5a50a7e55b870ae66a6bb69fcd3a7bd1841f3d9b.tar.gz textadept-5a50a7e55b870ae66a6bb69fcd3a7bd1841f3d9b.zip |
Lua code cleanup and API changes.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r-- | modules/textadept/keys.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index e3d7eaed..f38de109 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -177,8 +177,8 @@ keys[not OSX and 'cs' or 'ms'] = buffer.save keys[not OSX and (not NCURSES and 'cS' or 'cms') or 'mS'] = buffer.save_as keys[not OSX and 'cw' or 'mw'] = buffer.close keys[not OSX and (not NCURSES and 'cW' or 'cmw') or 'mW'] = io.close_all --- TODO: m_textadept.sessions.prompt_load --- TODO: m_textadept.sessions.prompt_save +-- TODO: m_textadept.sessions.load +-- TODO: m_textadept.sessions.save keys[not OSX and 'cq' or 'mq'] = quit -- Edit. |