Project

General

Profile

Cline » History » Version 1

Per Amundsen, 02/09/2014 03:25 PM

1 1 Per Amundsen
*/cline [-hlmr] [c] <@name> <N>*
2
3
Changes the color of the Nth line to color [c].
4
5
If [c] is not defined, the line will be reset to default color.
6
7
*Switches*
8
9
-h - TODO
10
-l - TODO
11
-m - TODO
12
-r - TODO
13
14
*Parameters*
15
16
[c] - Optional line color.
17
<@name> - Custom window name.
18
<N> - Line number to color.
19
20
21
*Example*
22
<pre>
23
alias example {
24
  ;Open a new custom window.
25
  /window @test
26
  
27
  ;Add a Hello World line to the custom window.
28
  /aline @test Hello World
29
30
  ;Change the color of the first line to red
31
  /cline 4 @test 1
32
}
33
</pre>