Created an extra command, to implement appropriat cmd+w behaviour on mac.

This commit is contained in:
Adam Harrison
2021-06-27 13:18:54 -04:00
parent cc568e65fc
commit fd3f25608f
3 changed files with 13 additions and 4 deletions
+9
View File
@@ -11,6 +11,15 @@ local t = {
node:close_active_view(core.root_view.root_node)
end,
["root:close-or-quit"] = function()
local node = core.root_view:get_active_node()
if node and (not node:is_empty() or not node.is_primary_node) then
node:close_active_view(core.root_view.root_node)
else
core.quit()
end
end,
["root:close-all"] = function()
core.confirm_close_all(core.root_view.close_all_docviews, core.root_view)
end,