diff options
author | 2016-03-26 13:57:02 -0400 | |
---|---|---|
committer | 2016-03-26 13:57:02 -0400 | |
commit | 6be644ed9fe4fa893c0d561c6a25118aca548ae3 (patch) | |
tree | ddb6a91c8683c04c08e6dfe58ba355b142f206a4 /TECHNOLOGY.md | |
parent | 274e7c46f33dcbc4d8af8264e24776a5c68c565c (diff) | |
download | textadept-6be644ed9fe4fa893c0d561c6a25118aca548ae3.tar.gz textadept-6be644ed9fe4fa893c0d561c6a25118aca548ae3.zip |
Support UTF-8 Lua pattern matching.
Makes use of an external luautf8 library, but only a subset of it.
Diffstat (limited to 'TECHNOLOGY.md')
-rw-r--r-- | TECHNOLOGY.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/TECHNOLOGY.md b/TECHNOLOGY.md index dab8b6c0..569d047d 100644 --- a/TECHNOLOGY.md +++ b/TECHNOLOGY.md @@ -56,6 +56,10 @@ Lua and includes a few external libraries. =[LuaFileSystem][] - Library for accessing directories and file attributes= Textadept uses LFS for accessing the host filesystem. +=[luautf8][] - Library for additional UTF-8 string utilities= + Textadept uses a subset of luautf8 for Lua pattern matching with UTF-8 + patterns. + =[lspawn][]\* - Lua module for spawning processes= Textadept uses lspawn for spawning asynchronous processes. @@ -69,6 +73,7 @@ Lua and includes a few external libraries. [Scinterm]: http://foicica.com/scinterm [LPeg]: http://www.inf.puc-rio.br/~roberto/lpeg/lpeg.html [LuaFileSystem]: http://keplerproject.github.io/luafilesystem/ +[luautf8]: https://github.com/starwing/luautf8/ [lspawn]: http://foicica.com/hg/lspawn [gtDialog]: http://foicica.com/gtdialog/ [ncurses]: http://invisible-island.net/ncurses/ |