blob: a6355397fe37a76a344561465843ad0d989787d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-- Copyright 2007-2011 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- The textadept module.
-- It provides utilities for editing text in Textadept.
module('_m.textadept', package.seeall)
require 'textadept.bookmarks'
require 'textadept.command_entry'
require 'textadept.editing'
require 'textadept.find'
require 'textadept.filter_through'
require 'textadept.mime_types'
require 'textadept.run'
require 'textadept.session'
require 'textadept.snapopen'
require 'textadept.snippets'
-- These need to be loaded last.
require 'textadept.menu'
require 'textadept.keys'
|