blob: 1bc46873b75a102246a32645f96e8543e3e28165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
%%%----------------------------------------------------------------------
%%% File : em_stdlib.erl
%%% Author : Luke Gorrie <luke@bluetail.com>
%%% Purpose : Module for loading the standard library of editor commands.
%%% This module is loaded/initialised on editor startup.
%%% Created : 29 Apr 2001 by Luke Gorrie <luke@bluetail.com>
%%%----------------------------------------------------------------------
-module(em_stdlib).
-author('luke@bluetail.com').
-export([mod_init/0]).
mod_init() ->
lists:foreach(fun(Mod) -> edit_mod:require(Mod) end,
mods()).
%% List of modules to be initialised at start-up.
mods() ->
[em_erlang, em_scheme].
|