aboutsummaryrefslogtreecommitdiffhomepage
path: root/modules/textadept/init.lua
blob: 0195ae3185426c151cf8ffd1455cd184407b7d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-- Copyright 2007-2020 Mitchell. See LICENSE.

local M = {}
textadept = M -- forward declaration

--[[ This comment is for LuaDoc.
---
-- The textadept module.
-- It provides utilities for editing text in Textadept.
module('textadept')]]

local modules = {
  'bookmarks', 'command_entry', 'editing', 'file_types', 'find', 'history',
  'macros', 'run', 'session', 'snippets', --[[need to be last]] 'menu', 'keys'
}
for _, name in ipairs(modules) do M[name] = require('textadept.' .. name) end
M.command_entry, M.find = nil, nil -- ui.command_entry, ui.find

return M