mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
6c2f9c685a
commands. /RUN -> /SCRIPT LOAD, /PERLFLUSH -> /SCRIPT FLUSH, /PERL -> /SCRIPT EXEC. Added /SCRIPT UNLOAD, /SCRIPT LIST. Lots of cleanups. filename_complete() has extra argument for "default directory" which is searched if no path is given when completing. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1680 dbcabf3a-b0e7-0310-adc4-f8d773084564
20 lines
375 B
C
20 lines
375 B
C
#include "formats.h"
|
|
|
|
enum {
|
|
IRCTXT_MODULE_NAME,
|
|
|
|
IRCTXT_FILL_1,
|
|
|
|
TXT_SCRIPT_NOT_FOUND,
|
|
TXT_SCRIPT_NOT_LOADED,
|
|
TXT_SCRIPT_LOADED,
|
|
TXT_SCRIPT_UNLOADED,
|
|
TXT_NO_SCRIPTS_LOADED,
|
|
TXT_SCRIPT_LIST_HEADER,
|
|
TXT_SCRIPT_LIST_LINE,
|
|
TXT_SCRIPT_LIST_FOOTER,
|
|
TXT_SCRIPT_ERROR
|
|
};
|
|
|
|
extern FORMAT_REC feperl_formats[];
|