diff options
author | 2009-01-05 23:06:16 -0500 | |
---|---|---|
committer | 2009-01-05 23:06:16 -0500 | |
commit | 1267b118ffebf604639ca7a56660a1b4b69a2b85 (patch) | |
tree | b629e6d9953bee793c9fada471de3d8c818c86de /core | |
parent | 87a6393a09780e81c6ed39c454df57b847ae4401 (diff) | |
download | textadept-1267b118ffebf604639ca7a56660a1b4b69a2b85.tar.gz textadept-1267b118ffebf604639ca7a56660a1b4b69a2b85.zip |
Move all 'require' statements into init.lua and label for easy configuration.
Diffstat (limited to 'core')
-rw-r--r-- | core/ext/pm.lua | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/core/ext/pm.lua b/core/ext/pm.lua index ed997c5d..fa5d21d0 100644 --- a/core/ext/pm.lua +++ b/core/ext/pm.lua @@ -44,17 +44,6 @@ -- widget "*textadept-pm-entry" style "textadept-pm-display-style" -- widget "*textadept-pm-view" style "textadept-pm-display-style" ---- --- Browsers loaded by the project manager. --- @class table --- @name browsers --- @usage Add additional browsers to this list. -local browsers = { - 'buffer_browser', 'file_browser', 'ctags_browser', 'macro_browser', - 'find_browser', 'modules_browser', 'project_browser' -} -for _, b in ipairs(browsers) do require('ext/pm.'..b) end - local pm = textadept.pm --- |