about summary refs log tree commit diff stats
path: root/html/edit/001-editor.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-12-26 20:44:10 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-12-26 20:58:37 -0800
commit201458e3bd2f1d79a0ea0b853552e9df267e92b1 (patch)
tree0a4f13662cde7f92ae0bcf641c9733e2a0fcd6ef /html/edit/001-editor.mu.html
parente35c2d6857e1ed916221faae707e3c53ff8ed042 (diff)
downloadmu-201458e3bd2f1d79a0ea0b853552e9df267e92b1.tar.gz
3713 - cross-link calls with definitions in html
Diffstat (limited to 'html/edit/001-editor.mu.html')
-rw-r--r--html/edit/001-editor.mu.html84
1 files changed, 42 insertions, 42 deletions
diff --git a/html/edit/001-editor.mu.html b/html/edit/001-editor.mu.html
index 7a05ea6d..3d19d408 100644
--- a/html/edit/001-editor.mu.html
+++ b/html/edit/001-editor.mu.html
@@ -65,10 +65,10 @@ if ('onhashchange' in window) {
 <span id="L6" class="LineNr">  6 </span>  <span class="Constant">local-scope</span>
 <span id="L7" class="LineNr">  7 </span>  <span class="Constant">load-ingredients</span>
 <span id="L8" class="LineNr">  8 </span>  open-console
-<span id="L9" class="LineNr">  9 </span>  hide-screen <span class="Constant">0/screen</span>
+<span id="L9" class="LineNr">  9 </span>  <a href='081print.mu.html#L623'>hide-screen</a> <span class="Constant">0/screen</span>
 <span id="L10" class="LineNr"> 10 </span>  new-editor text, <span class="Constant">0/left</span>, <span class="Constant">5/right</span>
-<span id="L11" class="LineNr"> 11 </span>  show-screen <span class="Constant">0/screen</span>
-<span id="L12" class="LineNr"> 12 </span>  wait-for-event <span class="Constant">0/console</span>
+<span id="L11" class="LineNr"> 11 </span>  <a href='081print.mu.html#L631'>show-screen</a> <span class="Constant">0/screen</span>
+<span id="L12" class="LineNr"> 12 </span>  <a href='084console.mu.html#L88'>wait-for-event</a> <span class="Constant">0/console</span>
 <span id="L13" class="LineNr"> 13 </span>  close-console
 <span id="L14" class="LineNr"> 14 </span>]
 <span id="L15" class="LineNr"> 15 </span>
@@ -77,7 +77,7 @@ if ('onhashchange' in window) {
 <span id="L18" class="LineNr"> 18 </span>  assume-screen <span class="Constant">10/width</span>, <span class="Constant">5/height</span>
 <span id="L19" class="LineNr"> 19 </span>  e:&amp;:editor <span class="Special">&lt;-</span> new-editor <span class="Constant">[abc]</span>, <span class="Constant">0/left</span>, <span class="Constant">10/right</span>
 <span id="L20" class="LineNr"> 20 </span>  run [
-<span id="L21" class="LineNr"> 21 </span>    render screen, e
+<span id="L21" class="LineNr"> 21 </span>    render <a href='081print.mu.html#L4'>screen</a>, e
 <span id="L22" class="LineNr"> 22 </span>  ]
 <span id="L23" class="LineNr"> 23 </span>  screen-should-contain [
 <span id="L24" class="LineNr"> 24 </span>    <span class="Comment"># top line of screen reserved for menu</span>
@@ -144,7 +144,7 @@ if ('onhashchange' in window) {
 <span id="L85" class="LineNr"> 85 </span>    c:char <span class="Special">&lt;-</span> index *text, idx
 <span id="L86" class="LineNr"> 86 </span>    insert c, curr
 <span id="L87" class="LineNr"> 87 </span>    <span class="Comment"># next iter</span>
-<span id="L88" class="LineNr"> 88 </span>    curr <span class="Special">&lt;-</span> next curr
+<span id="L88" class="LineNr"> 88 </span>    curr <span class="Special">&lt;-</span> <a href='065duplex_list.mu.html#L29'>next</a> curr
 <span id="L89" class="LineNr"> 89 </span>    idx <span class="Special">&lt;-</span> add idx,<span class="Constant"> 1</span>
 <span id="L90" class="LineNr"> 90 </span>    <span class="muControl">loop</span>
 <span id="L91" class="LineNr"> 91 </span>  <span class="Delimiter">}</span>
@@ -178,17 +178,17 @@ if ('onhashchange' in window) {
 <span id="L119" class="LineNr">119 </span><span class="Comment"># Assumes cursor should be at coordinates (cursor-row, cursor-column) and</span>
 <span id="L120" class="LineNr">120 </span><span class="Comment"># updates before-cursor to match. Might also move coordinates if they're</span>
 <span id="L121" class="LineNr">121 </span><span class="Comment"># outside text.</span>
-<span id="L122" class="LineNr">122 </span><span class="muRecipe">def</span> render screen:&amp;:screen, editor:&amp;:editor<span class="muRecipe"> -&gt; </span>last-row:num, last-column:num, screen:&amp;:screen, editor:&amp;:editor [
+<span id="L122" class="LineNr">122 </span><span class="muRecipe">def</span> render <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, editor:&amp;:editor<span class="muRecipe"> -&gt; </span>last-row:num, last-column:num, <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, editor:&amp;:editor [
 <span id="L123" class="LineNr">123 </span>  <span class="Constant">local-scope</span>
 <span id="L124" class="LineNr">124 </span>  <span class="Constant">load-ingredients</span>
 <span id="L125" class="LineNr">125 </span>  <span class="muControl">return-unless</span> editor, <span class="Constant">1/top</span>, <span class="Constant">0/left</span>
 <span id="L126" class="LineNr">126 </span>  left:num <span class="Special">&lt;-</span> get *editor, <span class="Constant">left:offset</span>
-<span id="L127" class="LineNr">127 </span>  screen-height:num <span class="Special">&lt;-</span> screen-height screen
+<span id="L127" class="LineNr">127 </span>  <a href='081print.mu.html#L594'>screen-height</a>:num <span class="Special">&lt;-</span> <a href='081print.mu.html#L594'>screen-height</a> <a href='081print.mu.html#L4'>screen</a>
 <span id="L128" class="LineNr">128 </span>  right:num <span class="Special">&lt;-</span> get *editor, <span class="Constant">right:offset</span>
 <span id="L129" class="LineNr">129 </span>  <span class="Comment"># traversing editor</span>
 <span id="L130" class="LineNr">130 </span>  curr:&amp;:duplex-list:char <span class="Special">&lt;-</span> get *editor, <span class="Constant">top-of-screen:offset</span>
-<span id="L131" class="LineNr">131 </span>  prev:&amp;:duplex-list:char <span class="Special">&lt;-</span> copy curr  <span class="Comment"># just in case curr becomes null and we can't compute prev</span>
-<span id="L132" class="LineNr">132 </span>  curr <span class="Special">&lt;-</span> next curr
+<span id="L131" class="LineNr">131 </span>  <a href='065duplex_list.mu.html#L36'>prev</a>:&amp;:duplex-list:char <span class="Special">&lt;-</span> copy curr  <span class="Comment"># just in case curr becomes null and we can't compute prev</span>
+<span id="L132" class="LineNr">132 </span>  curr <span class="Special">&lt;-</span> <a href='065duplex_list.mu.html#L29'>next</a> curr
 <span id="L133" class="LineNr">133 </span>  <span class="Comment"># traversing screen</span>
 <span id="L134" class="LineNr">134 </span><span class="Constant">  +render-loop-initialization</span>
 <span id="L135" class="LineNr">135 </span>  color:num <span class="Special">&lt;-</span> copy <span class="Constant">7/white</span>
@@ -197,11 +197,11 @@ if ('onhashchange' in window) {
 <span id="L138" class="LineNr">138 </span>  cursor-row:num <span class="Special">&lt;-</span> get *editor, <span class="Constant">cursor-row:offset</span>
 <span id="L139" class="LineNr">139 </span>  cursor-column:num <span class="Special">&lt;-</span> get *editor, <span class="Constant">cursor-column:offset</span>
 <span id="L140" class="LineNr">140 </span>  before-cursor:&amp;:duplex-list:char <span class="Special">&lt;-</span> get *editor, <span class="Constant">before-cursor:offset</span>
-<span id="L141" class="LineNr">141 </span>  screen <span class="Special">&lt;-</span> move-cursor screen, row, column
+<span id="L141" class="LineNr">141 </span>  <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L442'>move-cursor</a> <a href='081print.mu.html#L4'>screen</a>, row, column
 <span id="L142" class="LineNr">142 </span>  <span class="Delimiter">{</span>
 <span id="L143" class="LineNr">143 </span><span class="Constant">    +next-character</span>
 <span id="L144" class="LineNr">144 </span>    <span class="muControl">break-unless</span> curr
-<span id="L145" class="LineNr">145 </span>    off-screen?:bool <span class="Special">&lt;-</span> greater-or-equal row, screen-height
+<span id="L145" class="LineNr">145 </span>    off-screen?:bool <span class="Special">&lt;-</span> greater-or-equal row, <a href='081print.mu.html#L594'>screen-height</a>
 <span id="L146" class="LineNr">146 </span>    <span class="muControl">break-if</span> off-screen?
 <span id="L147" class="LineNr">147 </span>    <span class="Comment"># update editor.before-cursor</span>
 <span id="L148" class="LineNr">148 </span>    <span class="Comment"># Doing so at the start of each iteration ensures it stays one step behind</span>
@@ -211,7 +211,7 @@ if ('onhashchange' in window) {
 <span id="L152" class="LineNr">152 </span>      <span class="muControl">break-unless</span> at-cursor-row?
 <span id="L153" class="LineNr">153 </span>      at-cursor?:bool <span class="Special">&lt;-</span> equal column, cursor-column
 <span id="L154" class="LineNr">154 </span>      <span class="muControl">break-unless</span> at-cursor?
-<span id="L155" class="LineNr">155 </span>      before-cursor <span class="Special">&lt;-</span> copy prev
+<span id="L155" class="LineNr">155 </span>      before-cursor <span class="Special">&lt;-</span> copy <a href='065duplex_list.mu.html#L36'>prev</a>
 <span id="L156" class="LineNr">156 </span>    <span class="Delimiter">}</span>
 <span id="L157" class="LineNr">157 </span>    c:char <span class="Special">&lt;-</span> get *curr, <span class="Constant">value:offset</span>
 <span id="L158" class="LineNr">158 </span><span class="Constant">    &lt;character-c-received&gt;</span>
@@ -226,16 +226,16 @@ if ('onhashchange' in window) {
 <span id="L167" class="LineNr">167 </span>        left-of-cursor?:bool <span class="Special">&lt;-</span> lesser-than column, cursor-column
 <span id="L168" class="LineNr">168 </span>        <span class="muControl">break-unless</span> left-of-cursor?
 <span id="L169" class="LineNr">169 </span>        cursor-column <span class="Special">&lt;-</span> copy column
-<span id="L170" class="LineNr">170 </span>        before-cursor <span class="Special">&lt;-</span> prev curr
+<span id="L170" class="LineNr">170 </span>        before-cursor <span class="Special">&lt;-</span> <a href='065duplex_list.mu.html#L36'>prev</a> curr
 <span id="L171" class="LineNr">171 </span>      <span class="Delimiter">}</span>
 <span id="L172" class="LineNr">172 </span>      <span class="Comment"># clear rest of line in this window</span>
-<span id="L173" class="LineNr">173 </span>      clear-line-until screen, right
+<span id="L173" class="LineNr">173 </span>      <a href='081print.mu.html#L408'>clear-line-until</a> <a href='081print.mu.html#L4'>screen</a>, right
 <span id="L174" class="LineNr">174 </span>      <span class="Comment"># skip to next line</span>
 <span id="L175" class="LineNr">175 </span>      row <span class="Special">&lt;-</span> add row,<span class="Constant"> 1</span>
 <span id="L176" class="LineNr">176 </span>      column <span class="Special">&lt;-</span> copy left
-<span id="L177" class="LineNr">177 </span>      screen <span class="Special">&lt;-</span> move-cursor screen, row, column
-<span id="L178" class="LineNr">178 </span>      curr <span class="Special">&lt;-</span> next curr
-<span id="L179" class="LineNr">179 </span>      prev <span class="Special">&lt;-</span> next prev
+<span id="L177" class="LineNr">177 </span>      <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L442'>move-cursor</a> <a href='081print.mu.html#L4'>screen</a>, row, column
+<span id="L178" class="LineNr">178 </span>      curr <span class="Special">&lt;-</span> <a href='065duplex_list.mu.html#L29'>next</a> curr
+<span id="L179" class="LineNr">179 </span>      <a href='065duplex_list.mu.html#L36'>prev</a> <span class="Special">&lt;-</span> <a href='065duplex_list.mu.html#L29'>next</a> <a href='065duplex_list.mu.html#L36'>prev</a>
 <span id="L180" class="LineNr">180 </span>      <span class="muControl">loop</span> <span class="Constant">+next-character</span>
 <span id="L181" class="LineNr">181 </span>    <span class="Delimiter">}</span>
 <span id="L182" class="LineNr">182 </span>    <span class="Delimiter">{</span>
@@ -245,16 +245,16 @@ if ('onhashchange' in window) {
 <span id="L186" class="LineNr">186 </span>      <span class="muControl">break-unless</span> at-right?
 <span id="L187" class="LineNr">187 </span>      <span class="Comment"># print wrap icon</span>
 <span id="L188" class="LineNr">188 </span>      wrap-icon:char <span class="Special">&lt;-</span> copy <span class="Constant">8617/loop-back-to-left</span>
-<span id="L189" class="LineNr">189 </span>      print screen, wrap-icon, <span class="Constant">245/grey</span>
+<span id="L189" class="LineNr">189 </span>      print <a href='081print.mu.html#L4'>screen</a>, wrap-icon, <span class="Constant">245/grey</span>
 <span id="L190" class="LineNr">190 </span>      column <span class="Special">&lt;-</span> copy left
 <span id="L191" class="LineNr">191 </span>      row <span class="Special">&lt;-</span> add row,<span class="Constant"> 1</span>
-<span id="L192" class="LineNr">192 </span>      screen <span class="Special">&lt;-</span> move-cursor screen, row, column
+<span id="L192" class="LineNr">192 </span>      <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L442'>move-cursor</a> <a href='081print.mu.html#L4'>screen</a>, row, column
 <span id="L193" class="LineNr">193 </span>      <span class="Comment"># don't increment curr</span>
 <span id="L194" class="LineNr">194 </span>      <span class="muControl">loop</span> <span class="Constant">+next-character</span>
 <span id="L195" class="LineNr">195 </span>    <span class="Delimiter">}</span>
-<span id="L196" class="LineNr">196 </span>    print screen, c, color
-<span id="L197" class="LineNr">197 </span>    curr <span class="Special">&lt;-</span> next curr
-<span id="L198" class="LineNr">198 </span>    prev <span class="Special">&lt;-</span> next prev
+<span id="L196" class="LineNr">196 </span>    print <a href='081print.mu.html#L4'>screen</a>, c, color
+<span id="L197" class="LineNr">197 </span>    curr <span class="Special">&lt;-</span> <a href='065duplex_list.mu.html#L29'>next</a> curr
+<span id="L198" class="LineNr">198 </span>    <a href='065duplex_list.mu.html#L36'>prev</a> <span class="Special">&lt;-</span> <a href='065duplex_list.mu.html#L29'>next</a> <a href='065duplex_list.mu.html#L36'>prev</a>
 <span id="L199" class="LineNr">199 </span>    column <span class="Special">&lt;-</span> add column,<span class="Constant"> 1</span>
 <span id="L200" class="LineNr">200 </span>    <span class="muControl">loop</span>
 <span id="L201" class="LineNr">201 </span>  <span class="Delimiter">}</span>
@@ -270,7 +270,7 @@ if ('onhashchange' in window) {
 <span id="L211" class="LineNr">211 </span>    <span class="muControl">break-unless</span> before-cursor?
 <span id="L212" class="LineNr">212 </span>    cursor-row <span class="Special">&lt;-</span> copy row
 <span id="L213" class="LineNr">213 </span>    cursor-column <span class="Special">&lt;-</span> copy column
-<span id="L214" class="LineNr">214 </span>    before-cursor <span class="Special">&lt;-</span> copy prev
+<span id="L214" class="LineNr">214 </span>    before-cursor <span class="Special">&lt;-</span> copy <a href='065duplex_list.mu.html#L36'>prev</a>
 <span id="L215" class="LineNr">215 </span>  <span class="Delimiter">}</span>
 <span id="L216" class="LineNr">216 </span>  *editor <span class="Special">&lt;-</span> put *editor, <span class="Constant">bottom:offset</span>, row
 <span id="L217" class="LineNr">217 </span>  *editor <span class="Special">&lt;-</span> put *editor, <span class="Constant">cursor-row:offset</span>, cursor-row
@@ -279,32 +279,32 @@ if ('onhashchange' in window) {
 <span id="L220" class="LineNr">220 </span>  <span class="muControl">return</span> row, column
 <span id="L221" class="LineNr">221 </span>]
 <span id="L222" class="LineNr">222 </span>
-<span id="L223" class="LineNr">223 </span><span class="muRecipe">def</span> clear-screen-from screen:&amp;:screen, row:num, column:num, left:num, right:num<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L223" class="LineNr">223 </span><span class="muRecipe">def</span> clear-screen-from <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, row:num, column:num, left:num, right:num<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L224" class="LineNr">224 </span>  <span class="Constant">local-scope</span>
 <span id="L225" class="LineNr">225 </span>  <span class="Constant">load-ingredients</span>
 <span id="L226" class="LineNr">226 </span>  <span class="Comment"># if it's the real screen, use the optimized primitive</span>
 <span id="L227" class="LineNr">227 </span>  <span class="Delimiter">{</span>
-<span id="L228" class="LineNr">228 </span>    <span class="muControl">break-if</span> screen
+<span id="L228" class="LineNr">228 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L229" class="LineNr">229 </span>    clear-display-from row, column, left, right
 <span id="L230" class="LineNr">230 </span>    <span class="muControl">return</span>
 <span id="L231" class="LineNr">231 </span>  <span class="Delimiter">}</span>
 <span id="L232" class="LineNr">232 </span>  <span class="Comment"># if not, go the slower route</span>
-<span id="L233" class="LineNr">233 </span>  screen <span class="Special">&lt;-</span> move-cursor screen, row, column
-<span id="L234" class="LineNr">234 </span>  clear-line-until screen, right
-<span id="L235" class="LineNr">235 </span>  clear-rest-of-screen screen, row, left, right
+<span id="L233" class="LineNr">233 </span>  <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L442'>move-cursor</a> <a href='081print.mu.html#L4'>screen</a>, row, column
+<span id="L234" class="LineNr">234 </span>  <a href='081print.mu.html#L408'>clear-line-until</a> <a href='081print.mu.html#L4'>screen</a>, right
+<span id="L235" class="LineNr">235 </span>  clear-rest-of-screen <a href='081print.mu.html#L4'>screen</a>, row, left, right
 <span id="L236" class="LineNr">236 </span>]
 <span id="L237" class="LineNr">237 </span>
-<span id="L238" class="LineNr">238 </span><span class="muRecipe">def</span> clear-rest-of-screen screen:&amp;:screen, row:num, left:num, right:num<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L238" class="LineNr">238 </span><span class="muRecipe">def</span> clear-rest-of-screen <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, row:num, left:num, right:num<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L239" class="LineNr">239 </span>  <span class="Constant">local-scope</span>
 <span id="L240" class="LineNr">240 </span>  <span class="Constant">load-ingredients</span>
 <span id="L241" class="LineNr">241 </span>  row <span class="Special">&lt;-</span> add row,<span class="Constant"> 1</span>
-<span id="L242" class="LineNr">242 </span>  screen <span class="Special">&lt;-</span> move-cursor screen, row, left
-<span id="L243" class="LineNr">243 </span>  screen-height:num <span class="Special">&lt;-</span> screen-height screen
+<span id="L242" class="LineNr">242 </span>  <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L442'>move-cursor</a> <a href='081print.mu.html#L4'>screen</a>, row, left
+<span id="L243" class="LineNr">243 </span>  <a href='081print.mu.html#L594'>screen-height</a>:num <span class="Special">&lt;-</span> <a href='081print.mu.html#L594'>screen-height</a> <a href='081print.mu.html#L4'>screen</a>
 <span id="L244" class="LineNr">244 </span>  <span class="Delimiter">{</span>
-<span id="L245" class="LineNr">245 </span>    at-bottom-of-screen?:bool <span class="Special">&lt;-</span> greater-or-equal row, screen-height
+<span id="L245" class="LineNr">245 </span>    at-bottom-of-screen?:bool <span class="Special">&lt;-</span> greater-or-equal row, <a href='081print.mu.html#L594'>screen-height</a>
 <span id="L246" class="LineNr">246 </span>    <span class="muControl">break-if</span> at-bottom-of-screen?
-<span id="L247" class="LineNr">247 </span>    screen <span class="Special">&lt;-</span> move-cursor screen, row, left
-<span id="L248" class="LineNr">248 </span>    clear-line-until screen, right
+<span id="L247" class="LineNr">247 </span>    <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L442'>move-cursor</a> <a href='081print.mu.html#L4'>screen</a>, row, left
+<span id="L248" class="LineNr">248 </span>    <a href='081print.mu.html#L408'>clear-line-until</a> <a href='081print.mu.html#L4'>screen</a>, right
 <span id="L249" class="LineNr">249 </span>    row <span class="Special">&lt;-</span> add row,<span class="Constant"> 1</span>
 <span id="L250" class="LineNr">250 </span>    <span class="muControl">loop</span>
 <span id="L251" class="LineNr">251 </span>  <span class="Delimiter">}</span>
@@ -317,7 +317,7 @@ if ('onhashchange' in window) {
 <span id="L258" class="LineNr">258 </span><span class="Constant">def]</span>
 <span id="L259" class="LineNr">259 </span>  e:&amp;:editor <span class="Special">&lt;-</span> new-editor s, <span class="Constant">0/left</span>, <span class="Constant">5/right</span>
 <span id="L260" class="LineNr">260 </span>  run [
-<span id="L261" class="LineNr">261 </span>    render screen, e
+<span id="L261" class="LineNr">261 </span>    render <a href='081print.mu.html#L4'>screen</a>, e
 <span id="L262" class="LineNr">262 </span>  ]
 <span id="L263" class="LineNr">263 </span>  screen-should-contain [
 <span id="L264" class="LineNr">264 </span>   <span class="Constant"> .     .</span>
@@ -332,7 +332,7 @@ if ('onhashchange' in window) {
 <span id="L273" class="LineNr">273 </span>  assume-screen <span class="Constant">5/width</span>, <span class="Constant">5/height</span>
 <span id="L274" class="LineNr">274 </span>  e:&amp;:editor <span class="Special">&lt;-</span> new-editor <span class="Constant">[abc]</span>, <span class="Constant">1/left</span>, <span class="Constant">5/right</span>
 <span id="L275" class="LineNr">275 </span>  run [
-<span id="L276" class="LineNr">276 </span>    render screen, e
+<span id="L276" class="LineNr">276 </span>    render <a href='081print.mu.html#L4'>screen</a>, e
 <span id="L277" class="LineNr">277 </span>  ]
 <span id="L278" class="LineNr">278 </span>  screen-should-contain [
 <span id="L279" class="LineNr">279 </span>   <span class="Constant"> .     .</span>
@@ -348,7 +348,7 @@ if ('onhashchange' in window) {
 <span id="L289" class="LineNr">289 </span><span class="Constant">def]</span>
 <span id="L290" class="LineNr">290 </span>  e:&amp;:editor <span class="Special">&lt;-</span> new-editor s, <span class="Constant">1/left</span>, <span class="Constant">5/right</span>
 <span id="L291" class="LineNr">291 </span>  run [
-<span id="L292" class="LineNr">292 </span>    render screen, e
+<span id="L292" class="LineNr">292 </span>    render <a href='081print.mu.html#L4'>screen</a>, e
 <span id="L293" class="LineNr">293 </span>  ]
 <span id="L294" class="LineNr">294 </span>  screen-should-contain [
 <span id="L295" class="LineNr">295 </span>   <span class="Constant"> .     .</span>
@@ -363,7 +363,7 @@ if ('onhashchange' in window) {
 <span id="L304" class="LineNr">304 </span>  assume-screen <span class="Constant">5/width</span>, <span class="Constant">5/height</span>
 <span id="L305" class="LineNr">305 </span>  e:&amp;:editor <span class="Special">&lt;-</span> new-editor <span class="Constant">[abc def]</span>, <span class="Constant">0/left</span>, <span class="Constant">5/right</span>
 <span id="L306" class="LineNr">306 </span>  run [
-<span id="L307" class="LineNr">307 </span>    render screen, e
+<span id="L307" class="LineNr">307 </span>    render <a href='081print.mu.html#L4'>screen</a>, e
 <span id="L308" class="LineNr">308 </span>  ]
 <span id="L309" class="LineNr">309 </span>  screen-should-contain [
 <span id="L310" class="LineNr">310 </span>   <span class="Constant"> .     .</span>
@@ -384,7 +384,7 @@ if ('onhashchange' in window) {
 <span id="L325" class="LineNr">325 </span>  assume-screen <span class="Constant">5/width</span>, <span class="Constant">5/height</span>
 <span id="L326" class="LineNr">326 </span>  e:&amp;:editor <span class="Special">&lt;-</span> new-editor <span class="Constant">[abcde]</span>, <span class="Constant">0/left</span>, <span class="Constant">5/right</span>
 <span id="L327" class="LineNr">327 </span>  run [
-<span id="L328" class="LineNr">328 </span>    render screen, e
+<span id="L328" class="LineNr">328 </span>    render <a href='081print.mu.html#L4'>screen</a>, e
 <span id="L329" class="LineNr">329 </span>  ]
 <span id="L330" class="LineNr">330 </span>  <span class="Comment"># still wrap, even though the line would fit. We need room to click on the</span>
 <span id="L331" class="LineNr">331 </span>  <span class="Comment"># end of the line</span>
@@ -407,7 +407,7 @@ if ('onhashchange' in window) {
 <span id="L348" class="LineNr">348 </span>  assume-screen <span class="Constant">5/width</span>, <span class="Constant">5/height</span>
 <span id="L349" class="LineNr">349 </span>  e:&amp;:editor <span class="Special">&lt;-</span> new-editor <span class="Constant">[]</span>, <span class="Constant">0/left</span>, <span class="Constant">5/right</span>
 <span id="L350" class="LineNr">350 </span>  run [
-<span id="L351" class="LineNr">351 </span>    render screen, e
+<span id="L351" class="LineNr">351 </span>    render <a href='081print.mu.html#L4'>screen</a>, e
 <span id="L352" class="LineNr">352 </span>    3:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> get *e, <span class="Constant">cursor-row:offset</span>
 <span id="L353" class="LineNr">353 </span>    4:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> get *e, <span class="Constant">cursor-column:offset</span>
 <span id="L354" class="LineNr">354 </span>  ]
@@ -432,7 +432,7 @@ if ('onhashchange' in window) {
 <span id="L373" class="LineNr">373 </span><span class="Constant">f]</span>
 <span id="L374" class="LineNr">374 </span>  e:&amp;:editor <span class="Special">&lt;-</span> new-editor s, <span class="Constant">0/left</span>, <span class="Constant">5/right</span>
 <span id="L375" class="LineNr">375 </span>  run [
-<span id="L376" class="LineNr">376 </span>    render screen, e
+<span id="L376" class="LineNr">376 </span>    render <a href='081print.mu.html#L4'>screen</a>, e
 <span id="L377" class="LineNr">377 </span>  ]
 <span id="L378" class="LineNr">378 </span>  screen-should-contain [
 <span id="L379" class="LineNr">379 </span>   <span class="Constant"> .     .</span>
@@ -515,7 +515,7 @@ if ('onhashchange' in window) {
 <span id="L456" class="LineNr">456 </span><span class="Constant">f]</span>
 <span id="L457" class="LineNr">457 </span>  e:&amp;:editor <span class="Special">&lt;-</span> new-editor s, <span class="Constant">0/left</span>, <span class="Constant">8/right</span>
 <span id="L458" class="LineNr">458 </span>  run [
-<span id="L459" class="LineNr">459 </span>    render screen, e
+<span id="L459" class="LineNr">459 </span>    render <a href='081print.mu.html#L4'>screen</a>, e
 <span id="L460" class="LineNr">460 </span>  ]
 <span id="L461" class="LineNr">461 </span>  screen-should-contain [
 <span id="L462" class="LineNr">462 </span>   <span class="Constant"> .        .</span>