blob: aff2c07ff1650723bd3d9e1fe7681bf19036d8a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-- Copyright 2007-2013 Mitchell mitchell.att.foicica.com. See LICENSE.
package.path = table.concat({
_USERHOME..'/?.lua',
_USERHOME..'/modules/?.lua', _USERHOME..'/modules/?/init.lua',
_HOME..'/modules/?.lua', _HOME..'/modules/?/init.lua',
package.path
}, ';');
local so = not WIN32 and '/?.so;' or '/?.dll;'
package.cpath = _USERHOME..so.._USERHOME..'/modules'..so..package.cpath
textadept = require('textadept')
local ok, err = pcall(dofile, _USERHOME..'/init.lua')
if not ok and lfs.attributes(_USERHOME..'/init.lua') then ui.print(err) end
if arg then
events.emit(events.BUFFER_NEW) -- for the first buffer
events.emit(events.VIEW_NEW) -- for the first view
args.process(arg)
end
events.emit(events.INITIALIZED)
|