aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/init.lua
blob: c5dc1ea93abd9ca794dd7c95ca5a3cf4b6a8d67b (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
26
27
28
-- Copyright 2007-2011 Mitchell mitchell<att>caladbolg.net. See LICENSE.

local M = {}
_m.textadept = M

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

M.adeptsense = require 'textadept.adeptsense'
M.bookmarks = require 'textadept.bookmarks'
require 'textadept.command_entry'
M.editing = require 'textadept.editing'
require 'textadept.find'
M.filter_through = require 'textadept.filter_through'
M.mime_types = require 'textadept.mime_types'
M.run = require 'textadept.run'
M.session = require 'textadept.session'
M.snapopen = require 'textadept.snapopen'
M.snippets = require 'textadept.snippets'

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

return M