aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/menu.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2016-06-15 08:48:55 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2016-06-15 08:48:55 -0400
commit015e44861d1f7e9658783adfa71d0a14f176dd6b (patch)
tree0a4122448b07337477fafaadec533d873ef8e79f /modules/textadept/menu.lua
parent79dfb0d2f8e5b65b39a8ece94bc0bc1e5892ddbb (diff)
downloadtextadept-015e44861d1f7e9658783adfa71d0a14f176dd6b.tar.gz
textadept-015e44861d1f7e9658783adfa71d0a14f176dd6b.zip
Renamed "snapopen" to "quick open" in APIs and menus.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r--modules/textadept/menu.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index 440df9af..7c6692f9 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -220,15 +220,15 @@ local default_menubar = {
{_L['_Goto Bookmark...'], textadept.bookmarks.goto_mark},
},
{
- title = _L['Snap_open'],
- {_L['Snapopen _User Home'], function() io.snapopen(_USERHOME) end},
- {_L['Snapopen _Textadept Home'], function() io.snapopen(_HOME) end},
- {_L['Snapopen _Current Directory'], function()
+ title = _L['Quick _Open'],
+ {_L['Quickly Open _User Home'], function() io.quick_open(_USERHOME) end},
+ {_L['Quickly Open _Textadept Home'], function() io.quick_open(_HOME) end},
+ {_L['Quickly Open _Current Directory'], function()
if buffer.filename then
- io.snapopen(buffer.filename:match('^(.+)[/\\]'))
+ io.quick_open(buffer.filename:match('^(.+)[/\\]'))
end
end},
- {_L['Snapopen Current _Project'], io.snapopen},
+ {_L['Quickly Open Current _Project'], io.quick_open},
},
{
title = _L['_Snippets'],