mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Added /charset command
This commit is contained in:
parent
a02c89a8e8
commit
8f6b37f650
@ -945,6 +945,18 @@ static struct cmd_t command_defs[] =
|
||||
CMD_NOEXAMPLES
|
||||
},
|
||||
|
||||
{ "/charset",
|
||||
cmd_charset, parse_args, 0, 0, NULL,
|
||||
CMD_TAGS(
|
||||
CMD_TAG_UI)
|
||||
CMD_SYN(
|
||||
"/beep")
|
||||
CMD_DESC(
|
||||
"Display information about the current character set supported by the terminal. ")
|
||||
CMD_NOARGS
|
||||
CMD_NOEXAMPLES
|
||||
},
|
||||
|
||||
{ "/beep",
|
||||
cmd_beep, parse_args, 1, 1, &cons_beep_setting,
|
||||
CMD_TAGS(
|
||||
|
@ -43,6 +43,7 @@
|
||||
#include <sys/types.h>
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#include <langinfo.h>
|
||||
|
||||
#include "chat_session.h"
|
||||
#include "command/commands.h"
|
||||
@ -4007,6 +4008,26 @@ cmd_privileges(ProfWin *window, const char *const command, gchar **args)
|
||||
return result;
|
||||
}
|
||||
|
||||
gboolean
|
||||
cmd_charset(ProfWin *window, const char *const command, gchar **args)
|
||||
{
|
||||
char *codeset = nl_langinfo(CODESET);
|
||||
char *lang = getenv("LANG");
|
||||
|
||||
cons_show("Charset information:");
|
||||
|
||||
if (lang) {
|
||||
cons_show(" LANG: %s", lang);
|
||||
}
|
||||
if (codeset) {
|
||||
cons_show(" CODESET: %s", codeset);
|
||||
}
|
||||
cons_show(" MB_CUR_MAX: %d", MB_CUR_MAX);
|
||||
cons_show(" MB_LEN_MAX: %d", MB_LEN_MAX);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
gboolean
|
||||
cmd_beep(ProfWin *window, const char *const command, gchar **args)
|
||||
{
|
||||
|
@ -151,6 +151,7 @@ gboolean cmd_inpblock(ProfWin *window, const char *const command, gchar **args);
|
||||
gboolean cmd_encwarn(ProfWin *window, const char *const command, gchar **args);
|
||||
gboolean cmd_script(ProfWin *window, const char *const command, gchar **args);
|
||||
gboolean cmd_export(ProfWin *window, const char *const command, gchar **args);
|
||||
gboolean cmd_charset(ProfWin *window, const char *const command, gchar **args);
|
||||
|
||||
gboolean cmd_form_field(ProfWin *window, char *tag, gchar **args);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user