diff options
author | 2008-07-08 19:53:49 -0400 | |
---|---|---|
committer | 2008-07-08 19:53:49 -0400 | |
commit | fa419eb374744c90e72d4fc092637b4ef849aa5b (patch) | |
tree | 8dbc0c31b934f47578d628e6ea3901f6eb9d2e3b /core/ext/menu.lua | |
parent | 3da1a443c92eb7f8001b65fe5f427a09b58f2a33 (diff) | |
download | textadept-fa419eb374744c90e72d4fc092637b4ef849aa5b.tar.gz textadept-fa419eb374744c90e72d4fc092637b4ef849aa5b.zip |
Added additional standard key commands and added some TODO menu items.
Diffstat (limited to 'core/ext/menu.lua')
-rw-r--r-- | core/ext/menu.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/ext/menu.lua b/core/ext/menu.lua index 36df7ec8..dd2b986d 100644 --- a/core/ext/menu.lua +++ b/core/ext/menu.lua @@ -175,7 +175,7 @@ local actions = { ['Close All'] = { t.io.close_all }, ['Load Session...'] = { t.io.load_session }, -- TODO: file open dialog prompt ['Save Session...'] = { t.io.save_session }, -- TODO: file save dialog prompt - Quit = {}, -- TODO: quit + -- TODO: Quit -- Edit Undo = { 'undo', b }, Redo = { 'redo', b }, @@ -229,6 +229,9 @@ local actions = { Scope = { m_editing.select_scope }, -- Search Find = { t.find.focus }, + -- TODO: Find Next + -- TODO: Find Prev + -- TODO: Replace ['Jump to'] = { m_editing.goto_line }, -- Tools ['Focus Command Entry'] = { t.command_entry.focus }, |