aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/init.lua
blob: 457cfa4e5c39636f5949af7a680058800aa85e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
-- Copyright 2007-2016 Mitchell mitchell.att.foicica.com. See LICENSE.

local M = {}
textadept = M

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

M.bookmarks = require('textadept.bookmarks')
require('textadept.command_entry')
M.editing = require('textadept.editing')
M.file_types = require('textadept.file_types')
require('textadept.find')
M.run = require('textadept.run')
M.session = require('textadept.session')
M.snippets = require('textadept.snippets')

-- These need to be loaded last.
M.menu = require('textadept.menu')
M.keys = require('textadept.keys')

return M