Project

General

Profile

Cline » History » Version 5

Per Amundsen, 08/10/2014 03:46 AM

1 2 Per Amundsen
_Added in 1.9.3_
2
3 5 Per Amundsen
*/cline [-hl] [c] <@name> <N>*
4 1 Per Amundsen
5
Changes the color of the Nth line to color [c].
6
7
If [c] is not defined, the line will be reset to default color.
8
9
*Switches*
10
11 5 Per Amundsen
-h - Highlights the window's node in the treebar if the window is minimized 
12
-l - Specify the action to take place on the side-listbox 
13 1 Per Amundsen
14
*Parameters*
15
16
[c] - Optional line color.
17
<@name> - Custom window name.
18
<N> - Line number to color.
19
20
*Example*
21
<pre>
22
alias example {
23
  ;Open a new custom window.
24
  /window @test
25
  
26 3 Per Amundsen
  ;Add a 'Hello World' line to the custom window.
27 1 Per Amundsen
  /aline @test Hello World
28
29 4 Per Amundsen
  ;Change the color of the first line to red (4)
30 1 Per Amundsen
  /cline 4 @test 1
31
}
32
</pre>