aboutsummaryrefslogtreecommitdiff
path: root/xC.adoc
blob: ec134d0652db324e075481e70d34e062725e34c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
xC(1)
=====
:doctype: manpage
:manmanual: xK Manual
:mansource: xK {release-version}

Name
----
xC - terminal-based IRC client

Synopsis
--------
*xC* [_OPTION_]...

Description
-----------
*xC* is a scriptable IRC client for the command line.  On the first run it will
welcome you with an introductory message.  Should you ever get lost, use the
*/help* command to obtain more information on commands or options.

Options
-------
*-f*, *--format*::
	Format IRC text from the standard input, converting colour sequences and
	other formatting marks to ANSI codes retrieved from the *terminfo*(5)
	database:
+
....
printf '\x02bold\x02\n' | xC -f
....
+
This feature may be used to preview server MOTD files.

*-h*, *--help*::
	Display a help message and exit.

*-V*, *--version*::
	Output version information and exit.

Key bindings
------------
Most key bindings are inherited from the frontend in use, which is either GNU
Readline or BSD editline.  A few of them, however, are special to the IRC client
or assume a different function.  This is a list of all local overrides and
their respective function names:

*M-p*::
	Go up in history for this buffer (normally mapped to *C-p*).
*M-n*::
	Go down in history for this buffer (normally mapped to *C-n*).
*C-p*, *F5*: *previous-buffer*::
	Switch to the previous buffer in order.
*C-n*, *F6*: *next-buffer*::
	Switch to the next buffer in order.
*M-TAB*: *switch-buffer*::
	Switch to the last buffer, i.e., the one you were in before.
*M-0*, *M-1*, ..., *M-9*: *goto-buffer*::
	Go to the N-th buffer (normally sets a repeat counter).
	Since there is no buffer number zero, *M-0* goes to the tenth one.
*M-!*: *goto-highlight*::
	Go to the first following buffer with an unseen highlight.
*M-a*: *goto-activity*::
	Go to the first following buffer with unseen activity.
*PageUp*: *display-backlog*::
	Show the in-memory backlog for this buffer using *general.pager*,
	which is almost certainly the *less*(1) program.
*M-h*: *display-full-log*::
	Show the log file for this buffer using *general.pager*.
*M-H*: *toggle-unimportant*::
	Hide all join, part and quit messages, as well as all channel mode changes
	that only relate to user channel modes.  Intended to reduce noise in
	channels with lots of people.
*M-e*: *edit-input*::
	Run an editor on the command line, making it easy to edit multiline
	messages.  Remember to save the file before exit.
*M-m*: *insert-attribute*::
	The next key will be interpreted as a formatting mark to insert:
	*c* for colours (optionally followed by numbers for the foreground
	and background), *i* for italics, *b* for bold text, *u* for underlined,
	*s* for struck-through, *m* for monospace, *v* for inverse text,
	and *o* resets all formatting.
*C-l*: *redraw-screen*::
	Should there be any issues with the display, this will clear the terminal
	screen and redraw all information.

Additionally, *C-w* and *C-u* in editline behave the same as they would in
Readline or the "vi" command mode, even though the "emacs" mode is enabled
by default.

Bindings can be customized in your _.inputrc_ or _.editrc_ file.  Both libraries
support conditional execution based on the program name.  Beware that it is easy
to make breaking changes.

Environment
-----------
*VISUAL*, *EDITOR*::
	The editor program to be launched by the *edit-input* function.
	If neither variable is set, it defaults to *vi*(1).

Files
-----
*xC* follows the XDG Base Directory Specification.

_~/.config/xC/xC.conf_::
	The program's configuration file.  Preferrably use internal facilities, such
	as the */set* command, to make changes in it.

_~/.local/share/xC/logs/_::
	When enabled by *general.logging*, log files are stored here.

_~/.local/share/xC/plugins/_::
_/usr/local/share/xC/plugins/_::
_/usr/share/xC/plugins/_::
	Plugins are searched for in these directories, in order.

Bugs
----
The editline (libedit) frontend may exhibit some unexpected behaviour.

Reporting bugs
--------------
Use https://git.janouch.name/p/xK to report bugs, request features,
or submit pull requests.

See also
--------
*less*(1), *readline*(3) or *editline*(7), *xF*(1)