diff options
author | 2010-10-18 18:30:14 -0400 | |
---|---|---|
committer | 2010-10-18 18:30:14 -0400 | |
commit | bc4c62a19864935743e6100ac358dcc44b0d101c (patch) | |
tree | 20fee19afa7a981fa18da41f68e2dfc1ceae7ff5 /core/init.lua | |
parent | 1e1617b6bb0632b573f060974008485de0137c35 (diff) | |
download | textadept-bc4c62a19864935743e6100ac358dcc44b0d101c.tar.gz textadept-bc4c62a19864935743e6100ac358dcc44b0d101c.zip |
Set Lua locale for string comparisons; core/init.lua
This is needed to sort tables for Scintilla autocompletion lists correctly.
Diffstat (limited to 'core/init.lua')
-rw-r--r-- | core/init.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/init.lua b/core/init.lua index 1411e4d0..f73b4ac8 100644 --- a/core/init.lua +++ b/core/init.lua @@ -3,6 +3,7 @@ _RELEASE = "Textadept 3.3" package.path = _HOME..'/core/?.lua;'..package.path +os.setlocale('C', 'collate') require 'iface' require 'args' |