about summary refs log tree commit diff stats
path: root/edit/007-sandbox-delete.mu
Commit message (Expand)AuthorAgeFilesLines
* 2983 - migrate buttons over to sandbox/Kartik K. Agaram2016-05-191-3/+3
* 2981 - sandbox buttons implemented in edit/Kartik K. Agaram2016-05-191-44/+53
* 2978 - support new 'edit' button in edit/Kartik K. Agaram2016-05-191-2/+2
* 2977 - draw new sandbox menu in edit/Kartik K. Agaram2016-05-191-71/+71
* 2953 - use pgup/pgdn to scroll through sandboxesKartik K. Agaram2016-05-111-6/+6
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-241-38/+38
* 2861 - 'maybe-convert' no longer returns addressKartik K. Agaram2016-04-231-1/+1
* 2853 - purge get-address from edit/ appKartik K. Agaram2016-04-221-16/+37
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-4/+4
* 2608 - fix-up tests in sandbox/ appKartik K. Agaram2016-01-271-12/+4
* 2594 - bugfixes: managing state when deletingKartik K. Agaram2016-01-231-2/+211
* 2590 - support scrolling through sandboxesKartik K. Agaram2016-01-221-1/+1
* 2585 - label sandboxes with a numberKartik K. Agaram2016-01-221-3/+3
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-191-10/+10
* rest of edit/ fixedKartik K. Agaram2015-12-151-1/+1
* 2374 - now edit works until layer 8Kartik K. Agaram2015-11-051-4/+2
* 2309Kartik K. Agaram2015-10-281-4/+4
* 2260 - start tracing by depth rather than labelKartik K. Agaram2015-10-061-1/+1
* 2183 - environment + external editor using tmuxKartik K. Agaram2015-09-121-3/+1
* 2156 - split edit.mu into multiple filesKartik K. Agaram2015-09-051-0/+111
ht .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/sh
set -e

set -v
rm -rf subx.cc subx_bin* *_list
rm -rf .until
test $# -gt 0 && exit 0  # convenience: 'clean top-level' to leave subsidiary tools alone
rm -rf enumerate/enumerate tangle/tangle tangle/*_list */*.dSYM termbox/*.[oa]
rm -rf browse_trace/browse_trace_bin browse_trace/*_list
e ^
efd7c0c1 ^






cbcd3325 ^






81f5ac9e ^
cbcd3325 ^
d3bcb234 ^

cbcd3325 ^
81f5ac9e ^











cbcd3325 ^
90018274 ^




cbcd3325 ^
95e021ae ^

c928a9eb ^
95e021ae ^
cbcd3325 ^
95e021ae ^















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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184