Plugin:MirLua: Difference between revisions
m ("Lua" header do not have to be translatable too) |
(Marked this version for translation) |
||
Line 7: | Line 7: | ||
== Lua == | == Lua == | ||
<translate> | <translate> | ||
<!--T:8--> | |||
The plugin uses <tvar|Lua_and_version>Lua 5.3.4</> which is shipped as a shared library <tvar|dll-name>lua53.dll</>. | The plugin uses <tvar|Lua_and_version>Lua 5.3.4</> which is shipped as a shared library <tvar|dll-name>lua53.dll</>. | ||
== Additional functions == | == Additional functions == <!--T:9--> | ||
</translate> | </translate> | ||
=== toansi === | === toansi === | ||
<translate> | <translate> | ||
<!--T:10--> | |||
Encodes lua utf-8 string to ansi. It can be usefull for passing string as parameter to ansi function. | Encodes lua utf-8 string to ansi. It can be usefull for passing string as parameter to ansi function. | ||
</translate> | </translate> | ||
Line 20: | Line 22: | ||
<translate> | <translate> | ||
<!--T:11--> | |||
Also it has a short version <tvar|a_syntax_symbol>'''a'''</>. | Also it has a short version <tvar|a_syntax_symbol>'''a'''</>. | ||
</translate> | </translate> | ||
Line 27: | Line 30: | ||
=== toucs2 === | === toucs2 === | ||
<translate> | <translate> | ||
<!--T:12--> | |||
Same as '''toansi''' but for utf-16. Also it has a short version <tvar|u_syntax_symbol>'''u'''</>. | Same as '''toansi''' but for utf-16. Also it has a short version <tvar|u_syntax_symbol>'''u'''</>. | ||
</translate> | </translate> | ||
Line 32: | Line 36: | ||
=== tonumber === | === tonumber === | ||
<translate> | <translate> | ||
<!--T:13--> | |||
If it receives '''light userdata''' parameter then returns it address as number, otherwise uses standard lua '''tonumber''' behaviour. | If it receives '''light userdata''' parameter then returns it address as number, otherwise uses standard lua '''tonumber''' behaviour. | ||
</translate> | </translate> | ||
Line 37: | Line 42: | ||
=== topointer === | === topointer === | ||
<translate> | <translate> | ||
<!--T:14--> | |||
Converts lua types '''bool''', '''number''', '''string''' to '''light userdata'''. | Converts lua types '''bool''', '''number''', '''string''' to '''light userdata'''. | ||
</translate> | </translate> | ||
Line 42: | Line 48: | ||
=== string.interpolate === | === string.interpolate === | ||
<translate> | <translate> | ||
<!--T:15--> | |||
Provides a more readable and convenient syntax to format string output. | Provides a more readable and convenient syntax to format string output. | ||
</translate> | </translate> |
Revision as of 16:14, 5 April 2018
MirLua | |
---|---|
![]() | |
Filename | MirLua.dll |
Author | Miranda NG team |
Download links | |
Stable version: | 32-bit, 64-bit |
Development version: | 32-bit, 64-bit |
Extends Miranda NG functionality with Lua scripts.
Lua
The plugin uses Lua 5.3.4 which is shipped as a shared library lua53.dll.
Additional functions
toansi
Encodes lua utf-8 string to ansi. It can be usefull for passing string as parameter to ansi function.
m.CallService('mRadio/Import', 0, toansi(m.Parse('%miranda_path%\\Plugins\\mradio.ini')))
Also it has a short version a.
m.CallService('DB/Ini/ImportFile', 0, a'import\\autoexec.ini')
toucs2
Same as toansi but for utf-16. Also it has a short version u.
tonumber
If it receives light userdata parameter then returns it address as number, otherwise uses standard lua tonumber behaviour.
topointer
Converts lua types bool, number, string to light userdata.
string.interpolate
Provides a more readable and convenient syntax to format string output.
local h = 'Hello'
print('{h}, {w}!' % {w = 'World'})
Internal modules
- m_clist
- Plugin:MirLua/Module/m core
- Plugin:MirLua/Module/m database
- Plugin:MirLua/Module/m genmenu
- Plugin:MirLua/Module/m hotkeys
- Plugin:MirLua/Module/m icolib
- Plugin:MirLua/Module/m sounds
Examples
{{#subpages:Content:MirLua/Examples}}
External links