diff options
author | 2010-11-30 19:55:39 -0500 | |
---|---|---|
committer | 2010-11-30 19:55:39 -0500 | |
commit | c7b543e79b41d9a983cc89e264acd0472d09dc92 (patch) | |
tree | 9b28b836f65b396ea160ba91048fb030018ccdcc /doc/manual/5_FolderStructure.md | |
parent | 6c1afd75fc048e65cef5bfdbe68c79a082bdad43 (diff) | |
download | textadept-c7b543e79b41d9a983cc89e264acd0472d09dc92.tar.gz textadept-c7b543e79b41d9a983cc89e264acd0472d09dc92.zip |
New manual.
Diffstat (limited to 'doc/manual/5_FolderStructure.md')
-rw-r--r-- | doc/manual/5_FolderStructure.md | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/doc/manual/5_FolderStructure.md b/doc/manual/5_FolderStructure.md deleted file mode 100644 index 10fc0d90..00000000 --- a/doc/manual/5_FolderStructure.md +++ /dev/null @@ -1,39 +0,0 @@ -# Folder Structure - -Because Textadept is mostly written in Lua, these Lua files 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 Textadept 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 a `.textadept` folder in your home directory. -In Linux and Mac OSX, your home directory is the location specified by the -`HOME` environment variable (typically `/home/username` and `/Users/username` -respectively). In Windows, it is the `USERPROFILE` environment variable. This -directory will be denoted as `~/.textadept` from now on in the manual. - -## GTK - -The `etc/`, `lib/`, and `share/` directories are used by GTK and only appear in -the Win32 and Mac OSX packages. |