aboutsummaryrefslogtreecommitdiff
path: root/core/ext/menu.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2008-07-08 19:53:49 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2008-07-08 19:53:49 -0400
commitfa419eb374744c90e72d4fc092637b4ef849aa5b (patch)
tree8dbc0c31b934f47578d628e6ea3901f6eb9d2e3b /core/ext/menu.lua
parent3da1a443c92eb7f8001b65fe5f427a09b58f2a33 (diff)
downloadtextadept-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.lua5
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 },