about summary refs log tree commit diff stats
path: root/edit
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-12-30 20:52:43 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-12-30 20:52:43 -0800
commitddf378d49e4c8aa71cdfa85e0c52c8df13966a0d (patch)
tree20ee342bfccfb49ed85fcf0fc172b2ec86cb3259 /edit
parentf93226d5f13434d02bd904a11400e72ff7e62bbf (diff)
downloadmu-ddf378d49e4c8aa71cdfa85e0c52c8df13966a0d.tar.gz
4169
Diffstat (limited to 'edit')
-rw-r--r--edit/Readme.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/edit/Readme.md b/edit/Readme.md
index 3a18567e..698e534b 100644
--- a/edit/Readme.md
+++ b/edit/Readme.md
@@ -16,22 +16,20 @@ You can also run the tests for the environment:
   $ ./mu test edit
   ```
 
-You can also load the files more explicitly by enumerating them all:
+You can also load the files more explicitly by enumerating them all (in order):
 
   ```shell
   $  ./mu edit/*.mu
   ```
 
-This is handy if you want to run simpler versions of the editor so you can
-stage your learning.
+This is handy if you want to play with simpler versions of the editor that are
+easier to understand. Stop loading at any layer to run with a subset of
+features:
 
   ```shell
-  $ ./mu edit/00[12]*.mu  # run a simple editor rather than the full environment
+  $ ./mu edit/001*.mu edit/002*.mu  # run a simple editor rather than the full environment
   ```
 
-To see how the various 'layers' are organized, peek inside the individual
-`.mu` files.
-
 ---
 
 Appendix: keyboard shortcuts
165' href='#n165'>165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267