about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-26 13:33:24 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-26 13:33:24 -0800
commite616059d70926a8712134072988edb6ae0cae17a (patch)
tree8e09a06a499d7e06b30cc5af53917a35a6f06737
parentbff0fa450814fcadc4b35e3e740e8d9ee6370d11 (diff)
downloadmu-e616059d70926a8712134072988edb6ae0cae17a.tar.gz
2714 - apply 2604 to sandbox/
-rw-r--r--sandbox/001-editor.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/001-editor.mu b/sandbox/001-editor.mu
index c83b7f3a..d338b4bb 100644
--- a/sandbox/001-editor.mu
+++ b/sandbox/001-editor.mu
@@ -242,7 +242,7 @@ recipe clear-line-delimited screen:address:shared:screen, column:number, right:n
   {
     done?:boolean <- greater-than column, right
     break-if done?
-    screen <- print screen, space, 0/color/unused, bg-color
+    screen <- print screen, space, 7/white, bg-color  # foreground color is mostly unused except if the cursor shows up at this cell
     column <- add column, 1
     loop
   }
rew DeVault <sir@cmpwn.com> 2019-12-21 09:27:54 -0500 binds.conf: mark bindings' href='/akspecs/aerc/commit/config/binds.conf?h=0.4.0&id=1ba9f0da1945671370740a484c0e2c0ac69bf4fd'>1ba9f0d ^
455c6f0 ^
06bb332 ^
455c6f0 ^
acfe7d7 ^
f5bf4a9 ^
10a3d9d ^

11a569f ^



6c03596 ^
f5bf4a9 ^

67ddaea ^
04d9ab3 ^

91a75cd ^
f81e4bd ^
91a75cd ^


5d0402a ^
04d9ab3 ^

0ec970b ^
0494c9a ^



6353897 ^



0494c9a ^

0897413 ^

0494c9a ^

04d9ab3 ^
577248f ^
f77d7c2 ^

702ad43 ^
f77d7c2 ^





577248f ^
687f1d8 ^
577248f ^




f77d7c2 ^



7f03327 ^
887ff65 ^
52b3181 ^
8b2abcb ^
f77d7c2 ^
04d9ab3 ^

687f1d8 ^
04d9ab3 ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103