$+ » History » Version 3
Per Amundsen, 02/16/2023 05:12 PM
| 1 | 1 | Per Amundsen | _Added in 1.9.0_ |
|---|---|---|---|
| 2 | |||
| 3 | *$+* |
||
| 4 | |||
| 5 | 2 | Per Amundsen | Identifiers must be followed/trailed by white spaces, $+ can be used to combine two items to remove any spaces between them. |
| 6 | |||
| 7 | 1 | Per Amundsen | |
| 8 | *Example* |
||
| 9 | |||
| 10 | <pre> |
||
| 11 | ; Combines your nick twice without any spaces. |
||
| 12 | //echo -ag $me $+ $me |
||
| 13 | </pre> |
||
| 14 | |||
| 15 | ----------------------------------------------------------------------------- |
||
| 16 | |||
| 17 | *$+(n1,...,nN)* |
||
| 18 | |||
| 19 | Combines all of the specified parameters, the same as using [[$+]] in between each item. |
||
| 20 | |||
| 21 | *Parameters* |
||
| 22 | |||
| 23 | 3 | Per Amundsen | table(ktable). |
| 24 | |*Parameter*|*Description*| |
||
| 25 | | n1,...,nN | Any number of items to combine. | |
||
| 26 | 1 | Per Amundsen | |
| 27 | *Example* |
||
| 28 | |||
| 29 | <pre> |
||
| 30 | ; Combine your nick multiple times without any spaces. |
||
| 31 | //echo -ag $+($me,$me,$me,$me,$me,$me,$me) |
||
| 32 | </pre> |