aboutsummaryrefslogtreecommitdiff
path: root/core/ext/menu.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2008-12-21 18:33:29 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2008-12-21 18:33:29 -0500
commit33106e9428174330cb94a47f4826cd5c22e97144 (patch)
tree4574e9cdafd2bb9f783580ba26d268be78b0e012 /core/ext/menu.lua
parente01136849a2dd6cf2c40b50d0d7ca565c24e8ed9 (diff)
downloadtextadept-33106e9428174330cb94a47f4826cd5c22e97144.tar.gz
textadept-33106e9428174330cb94a47f4826cd5c22e97144.zip
Finally added ability to quit Textadept from Lua.
Diffstat (limited to 'core/ext/menu.lua')
-rw-r--r--core/ext/menu.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ext/menu.lua b/core/ext/menu.lua
index 913155fb..2b3209e6 100644
--- a/core/ext/menu.lua
+++ b/core/ext/menu.lua
@@ -192,7 +192,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 = { t.quit },
-- Edit
Undo = { 'undo', b },
Redo = { 'redo', b },