mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
Merge pull request #1393 from ailin-nemui/eval-help
minor rendering fix in eval help
(cherry picked from commit 0bf18beed7
)
This commit is contained in:
parent
bc805f9bcd
commit
be5f917f07
@ -10,18 +10,22 @@
|
||||
%9Description:%9
|
||||
|
||||
Evaluates the given commands and executes them; you can use internal
|
||||
variables and separate multiple commands by using the ';' character.
|
||||
If the command contains a string with '$', '\' or ';' those characters
|
||||
variables and separate multiple commands by using the `;' character.
|
||||
If the command contains a string with `$', `\' or `;' those characters
|
||||
need to be escaped:
|
||||
'$' -> '$$'
|
||||
'\' -> '\\' (or even '\\\\', depending on where they are used)
|
||||
';' -> '\;'
|
||||
|
||||
`$' -> `$$'
|
||||
`\' -> `\\' (or even `\\\\', depending on where they are used)
|
||||
`;' -> `\;'
|
||||
|
||||
%9Examples:%9
|
||||
|
||||
/EVAL echo I am connected to ${S} on ${chatnet} as ${N}
|
||||
/EVAL echo My user privileges are +${usermode}; echo Let's party!
|
||||
to print '1;2$3\4': /EVAL echo 1\;2$$3\\4
|
||||
|
||||
to print `1;2$3\4':
|
||||
|
||||
/EVAL echo 1\;2$$3\\4
|
||||
|
||||
%9References:%9
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user