aboutsummaryrefslogtreecommitdiffhomepage
path: root/init.lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2010-03-10 02:55:33 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2010-03-10 02:55:33 -0500
commit69aa7111af192403ee612be1aaa87555beabe145 (patch)
tree9501f45bc24d535084da5dddce2087073b90edae /init.lua
parent9ccdc7a172c6a60ce948e4c5093603f02b530750 (diff)
Removed side pane.
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/init.lua b/init.lua
index e7c7ee89..c81f2766 100644
--- a/init.lua
+++ b/init.lua
@@ -28,13 +28,6 @@ require 'ext/command_entry' -- provides tab-completion for the command entry
require 'ext/mime_types' -- provides support for language detection based on
-- the file; loads its language-specific module if
-- it exists
-require 'ext/pm' -- provides the dynamic browser (side pane) functionality
-require 'ext/pm.buffer_browser' -- buffer browser
-require 'ext/pm.file_browser' -- file browser
-require 'ext/pm.modules_browser' -- modules browser
-if not WIN32 then
- require 'ext/pm.ctags_browser' -- ctags browser
-end
-- Generic modules to load on startup.
require 'textadept'
@@ -76,11 +69,5 @@ if not RESETTING then
if not filename:find('^~?/') then filename = base_dir..filename end
textadept.io.open(filename)
end
-
- -- read only the Project Manager session settings
- if not _m.textadept.session.load(nil, true) then
- textadept.pm.entry_text = 'buffers'
- textadept.pm.activate()
- end
end
end