blob: 2e3db982a5dcd8d404686732b2a45143ab627d0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
HOME/plan9/bin/rc
# Add commands to window tag depending on window name
. 9.rc
. $PLAN9/lib/acme.rc
event=$1
target=$2
switch($event$target) {
case new/*.go
echo -n 'ClearWin Get Lrefs Ldef' | 9p write acme/$winid/tag
case new/*Errors
echo -n 'ClearWin Get' | 9p write acme/$winid/tag
}
|