aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/11_Scripting.md
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2012-03-08 13:44:53 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2012-03-08 13:44:53 -0500
commit1ef52910df3a560d24a1d92e6fe7621a751d6859 (patch)
treeb4971e7857f71525c68e442e3d9baddc0681075b /doc/manual/11_Scripting.md
parent7c5c9fa80851698caff1c7711bc1cd7f3979e07b (diff)
downloadtextadept-1ef52910df3a560d24a1d92e6fe7621a751d6859.tar.gz
textadept-1ef52910df3a560d24a1d92e6fe7621a751d6859.zip
Moved Manual into `doc/` root directory.
Diffstat (limited to 'doc/manual/11_Scripting.md')
-rw-r--r--doc/manual/11_Scripting.md81
1 files changed, 0 insertions, 81 deletions
diff --git a/doc/manual/11_Scripting.md b/doc/manual/11_Scripting.md
deleted file mode 100644
index 463d01bc..00000000
--- a/doc/manual/11_Scripting.md
+++ /dev/null
@@ -1,81 +0,0 @@
-# Scripting
-
-Textadept has superb support for editing Lua code. Syntax autocomplete and
-LuaDoc is available for many Textadept objects as well as Lua's standard
-libraries. See the [`lua` module documentation][] for more information.
-
-![Adeptsense ta](images/adeptsense_ta.png)
-&nbsp;&nbsp;&nbsp;&nbsp;
-![Adeptsense tadoc](images/adeptsense_tadoc.png)
-
-[`lua` module documentation]: ../api/_M.lua.html
-
-## LuaDoc and Examples
-
-Textadept's API is heavily documented. The [LuaDoc][] is the ultimate resource
-on scripting Textadept. There are of course abundant scripting examples since
-Textadept is mostly written in Lua.
-
-[LuaDoc]: ../api/index.html
-
-## Lua Configuration
-
-[Lua 5.2][] is built into Textadept. It has the same configuration (`luaconf.h`)
-as vanilla Lua with the following exceptions:
-
-* `TA_LUA_PATH` and `TA_LUA_CPATH` are the environment variable used in place of
- the usual `LUA_PATH` and `LUA_CPATH`.
-* `LUA_ROOT` is `/usr/` in Linux systems instead of `/usr/local/`.
-* All compatibility flags for Lua 5.1 are turned off. (`LUA_COMPAT_UNPACK`,
- `LUA_COMPAT_LOADERS`, `LUA_COMPAT_LOG10`, `LUA_COMPAT_LOADSTRING`,
- `LUA_COMPAT_MAXN`, and `LUA_COMPAT_MODULE`.)
-
-[Lua 5.2]: http://www.lua.org/manual/5.2/
-
-## Scintilla
-
-The editing component used by Textadept is [Scintilla][]. The [buffer][] part of
-Textadept's API is derived from the [Scintilla API][] so any C/C++ code using
-Scintilla calls can be ported to Lua without too much trouble.
-
-[Scintilla]: http://scintilla.org
-[buffer]: ../api/buffer.html
-[Scintilla API]: http://scintilla.org/ScintillaDoc.html
-
-## Textadept Structure
-
-Because Textadept is mostly written in Lua, its Lua scripts have to be stored in
-an organized folder structure.
-
-### Core
-
-Textadept's core Lua modules are contained in `core/`. These are absolutely
-necessary in order for the application to run. They are responsible for
-Textadept's Lua to C interface, event structure, file input/output, and
-localization.
-
-### Lexers
-
-Lexer Lua modules are responsible for the syntax highlighting of source code.
-They are located in `lexers/`.
-
-### Modules
-
-Editor Lua modules are contained in `modules/`. These provide advanced text
-editing capabilities and can be available for all programming languages or
-targeted at specific ones.
-
-### Themes
-
-Built-in themes to customize the look and behavior of Textadept are located in
-`themes/`.
-
-### User
-
-User Lua modules are contained in the `~/.textadept/` folder. This folder may
-contain `lexers/`, `modules/`, and `themes/` subdirectories.
-
-### GTK
-
-The `etc/`, `lib/`, and `share/` directories are used by GTK and only appear in
-the Win32 and Mac OSX packages.