1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 23:06:38 +02:00

Added Lua

This commit is contained in:
Sebastien Helleu
2006-02-11 10:10:26 +00:00
parent e7f730387f
commit 321a8a65ad
8 changed files with 80 additions and 28 deletions
+17 -2
View File
@@ -1,4 +1,4 @@
WeeChat FAQ, 2006-01-14
WeeChat FAQ, 2006-02-11
=======================
Intended audience:
@@ -53,7 +53,7 @@ A: Because WeeChat is very light and has new features.
* many GUI (Curses, Gtk, wxWidgets, Qt)
* available in many languages
* nicklist available in all GUI
* extensible with scripts (Perl, Python, Ruby)
* extensible with plugins (C, Perl, Python, Ruby, Lua)
* horizontal and vertical window split
* infobar highlight
* FIFO pipe for remote control
@@ -101,6 +101,7 @@ A: You can use /perl command to load scripts (default path is
~/.weechat/perl).
Note that scripts in ~/.weechat/perl/autoload are automatically loaded
when WeeChat is starting up.
Perl scripts are not compatible with X-chat and Irssi.
2.6
@@ -112,18 +113,32 @@ A: You can use /python command to load scripts (default path is
~/.weechat/python).
Note that scripts in ~/.weechat/python/autoload are automatically loaded
when WeeChat is starting up.
Python scripts are not compatible with X-chat and Irssi.
2.7
================================================================================
Q: How can I load Ruby scripts?
Are Ruby scripts compatible with X-chat or/and Irssi ?
A: You can use /ruby command to load scripts (default path is
~/.weechat/ruby).
Note that scripts in ~/.weechat/ruby/autoload are automatically loaded
when WeeChat is starting up.
Ruby scripts are not compatible with X-chat and Irssi.
2.8
================================================================================
Q: How can I load Lua scripts?
Are Lua scripts compatible with X-chat or/and Irssi ?
A: You can use /lua command to load scripts (default path is
~/.weechat/lua).
Note that scripts in ~/.weechat/lua/autoload are automatically loaded
when WeeChat is starting up.
Lua scripts are not compatible with X-chat and Irssi.
3.1
================================================================================
Q: How should I report bugs?