diff options
author | 2010-06-10 22:54:51 -0400 | |
---|---|---|
committer | 2010-06-10 22:54:51 -0400 | |
commit | 7af3a62b748ab62596b6815ac97c9cf527513a6c (patch) | |
tree | 3b9aa55c6fe0b34bd71cbad9aacca2c90c01a07f /modules/cpp | |
parent | 13dc7390e0ddfe7f2a1b11d5b50265a74448e44f (diff) | |
download | textadept-7af3a62b748ab62596b6815ac97c9cf527513a6c.tar.gz textadept-7af3a62b748ab62596b6815ac97c9cf527513a6c.zip |
Moved textadept.io into Lua's io table.
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts.
Diffstat (limited to 'modules/cpp')
-rw-r--r-- | modules/cpp/commands.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cpp/commands.lua b/modules/cpp/commands.lua index 263b6819..65f67ff4 100644 --- a/modules/cpp/commands.lua +++ b/modules/cpp/commands.lua @@ -26,7 +26,7 @@ local keys = _G.keys if type(keys) == 'table' then keys.cpp = { al = { - m = { textadept.io.open, + m = { io.open_file, textadept.iconv(_HOME..'/modules/cpp/init.lua', 'UTF-8', _CHARSET) }, }, |