diff options
author | 2008-12-30 22:21:36 -0500 | |
---|---|---|
committer | 2008-12-30 22:21:36 -0500 | |
commit | 2eaa5fc28bcfab10bb824faff740f3acab354158 (patch) | |
tree | 870117a0465783a00460bf49205e86de1eb5cc37 /core | |
parent | 362d7af9e26ccc34fd30bcb7bd5b4e0c39dbf5c1 (diff) | |
download | textadept-2eaa5fc28bcfab10bb824faff740f3acab354158.tar.gz textadept-2eaa5fc28bcfab10bb824faff740f3acab354158.zip |
Added 'Show PM Project' to 'Project Manager' menu; core/ext/menu.lua
Diffstat (limited to 'core')
-rw-r--r-- | core/ext/menu.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/ext/menu.lua b/core/ext/menu.lua index 78d706bc..6bdcb9b4 100644 --- a/core/ext/menu.lua +++ b/core/ext/menu.lua @@ -147,6 +147,7 @@ t.menubar = { title = '_Project Manager', '_Toggle PM Visible', '_Focus PM', + 'Show PM _Project', 'Show PM _Ctags', 'Show PM _Buffers', 'Show PM _Files', @@ -302,6 +303,7 @@ local actions = { -- Project Manager ['Toggle PM Visible'] = { t.pm.toggle_visible }, ['Focus PM'] = { t.pm.focus }, + ['Show PM Project'] = { pm_activate, 'project' }, ['Show PM Ctags'] = { pm_activate, 'ctags' }, ['Show PM Buffers'] = { pm_activate, 'buffers' }, ['Show PM Files'] = { pm_activate, not WIN32 and '/' or 'C:\\' }, |