diff options
Diffstat (limited to 'html/edit/002-typing.mu.html')
-rw-r--r-- | html/edit/002-typing.mu.html | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/html/edit/002-typing.mu.html b/html/edit/002-typing.mu.html index f8774dd1..39cbda87 100644 --- a/html/edit/002-typing.mu.html +++ b/html/edit/002-typing.mu.html @@ -141,7 +141,7 @@ if ('onhashchange' in window) { <span id="L78" class="LineNr"> 78 </span> <span class="muControl">return-unless</span> editor <span id="L79" class="LineNr"> 79 </span> left:num <span class="Special"><-</span> get *editor, <span class="Constant">left:offset</span> <span id="L80" class="LineNr"> 80 </span> right:num <span class="Special"><-</span> get *editor, <span class="Constant">right:offset</span> -<span id="L81" class="LineNr"> 81 </span> <a href='../081print.mu.html#L725'>screen-height</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L725'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> +<span id="L81" class="LineNr"> 81 </span> <a href='../081print.mu.html#L748'>screen-height</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L748'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> <span id="L82" class="LineNr"> 82 </span> <span class="Comment"># count newlines until screen row</span> <span id="L83" class="LineNr"> 83 </span> curr:&:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special"><-</span> get *editor, <span class="Constant">top-of-screen:offset</span> <span id="L84" class="LineNr"> 84 </span> <a href='../065duplex_list.mu.html#L36'>prev</a>:&:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special"><-</span> copy curr <span class="Comment"># just in case curr becomes null and we can't compute prev</span> @@ -156,7 +156,7 @@ if ('onhashchange' in window) { <span id="L93" class="LineNr"> 93 </span> <span class="Delimiter">{</span> <span id="L94" class="LineNr"> 94 </span><span class="Constant"> </span><span class="Conceal">¦</span><span class="Constant"> +next-character</span> <span id="L95" class="LineNr"> 95 </span> <span class="Conceal">¦</span> <span class="muControl">break-unless</span> curr -<span id="L96" class="LineNr"> 96 </span> <span class="Conceal">¦</span> off-screen?:bool <span class="Special"><-</span> greater-or-equal row, <a href='../081print.mu.html#L725'>screen-height</a> +<span id="L96" class="LineNr"> 96 </span> <span class="Conceal">¦</span> off-screen?:bool <span class="Special"><-</span> greater-or-equal row, <a href='../081print.mu.html#L748'>screen-height</a> <span id="L97" class="LineNr"> 97 </span> <span class="Conceal">¦</span> <span class="muControl">break-if</span> off-screen? <span id="L98" class="LineNr"> 98 </span> <span class="Conceal">¦</span> <span class="Comment"># update editor.before-cursor</span> <span id="L99" class="LineNr"> 99 </span> <span class="Conceal">¦</span> <span class="Comment"># Doing so at the start of each iteration ensures it stays one step behind</span> @@ -230,8 +230,8 @@ if ('onhashchange' in window) { <span id="L167" class="LineNr"> 167 </span> <span class="Constant">local-scope</span> <span id="L168" class="LineNr"> 168 </span> <span class="Constant">load-ingredients</span> <span id="L169" class="LineNr"> 169 </span> <span class="muControl">return-unless</span> editor, <span class="Constant">0/don't-render</span> -<span id="L170" class="LineNr"> 170 </span> <a href='../081print.mu.html#L712'>screen-width</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L712'>screen-width</a> <a href='../081print.mu.html#L4'>screen</a> -<span id="L171" class="LineNr"> 171 </span> <a href='../081print.mu.html#L725'>screen-height</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L725'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> +<span id="L170" class="LineNr"> 170 </span> <a href='../081print.mu.html#L735'>screen-width</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L735'>screen-width</a> <a href='../081print.mu.html#L4'>screen</a> +<span id="L171" class="LineNr"> 171 </span> <a href='../081print.mu.html#L748'>screen-height</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L748'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> <span id="L172" class="LineNr"> 172 </span> left:num <span class="Special"><-</span> get *editor, <span class="Constant">left:offset</span> <span id="L173" class="LineNr"> 173 </span> right:num <span class="Special"><-</span> get *editor, <span class="Constant">right:offset</span> <span id="L174" class="LineNr"> 174 </span> before-cursor:&:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special"><-</span> get *editor, <span class="Constant">before-cursor:offset</span> @@ -276,8 +276,8 @@ if ('onhashchange' in window) { <span id="L213" class="LineNr"> 213 </span> right:num <span class="Special"><-</span> get *editor, <span class="Constant">right:offset</span> <span id="L214" class="LineNr"> 214 </span> save-row:num <span class="Special"><-</span> copy cursor-row <span id="L215" class="LineNr"> 215 </span> save-column:num <span class="Special"><-</span> copy cursor-column -<span id="L216" class="LineNr"> 216 </span> <a href='../081print.mu.html#L712'>screen-width</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L712'>screen-width</a> <a href='../081print.mu.html#L4'>screen</a> -<span id="L217" class="LineNr"> 217 </span> <a href='../081print.mu.html#L725'>screen-height</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L725'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> +<span id="L216" class="LineNr"> 216 </span> <a href='../081print.mu.html#L735'>screen-width</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L735'>screen-width</a> <a href='../081print.mu.html#L4'>screen</a> +<span id="L217" class="LineNr"> 217 </span> <a href='../081print.mu.html#L748'>screen-height</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L748'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> <span id="L218" class="LineNr"> 218 </span> <span class="Comment"># occasionally we'll need to mess with the cursor</span> <span id="L219" class="LineNr"> 219 </span><span class="Constant"> <a href='002-typing.mu.html#L219'><insert-character-special-case></a></span> <span id="L220" class="LineNr"> 220 </span> <span class="Comment"># but mostly we'll just move the cursor right</span> @@ -288,7 +288,7 @@ if ('onhashchange' in window) { <span id="L225" class="LineNr"> 225 </span> <span class="Conceal">¦</span> <span class="Comment"># at end of all text? no need to scroll? just print the character and leave</span> <span id="L226" class="LineNr"> 226 </span> <span class="Conceal">¦</span> at-end?:bool <span class="Special"><-</span> equal <a href='../065duplex_list.mu.html#L29'>next</a>, <span class="Constant">0/null</span> <span id="L227" class="LineNr"> 227 </span> <span class="Conceal">¦</span> <span class="muControl">break-unless</span> at-end? -<span id="L228" class="LineNr"> 228 </span> <span class="Conceal">¦</span> bottom:num <span class="Special"><-</span> subtract <a href='../081print.mu.html#L725'>screen-height</a>,<span class="Constant"> 1</span> +<span id="L228" class="LineNr"> 228 </span> <span class="Conceal">¦</span> bottom:num <span class="Special"><-</span> subtract <a href='../081print.mu.html#L748'>screen-height</a>,<span class="Constant"> 1</span> <span id="L229" class="LineNr"> 229 </span> <span class="Conceal">¦</span> at-bottom?:bool <span class="Special"><-</span> equal save-row, bottom <span id="L230" class="LineNr"> 230 </span> <span class="Conceal">¦</span> at-right?:bool <span class="Special"><-</span> equal save-column, right <span id="L231" class="LineNr"> 231 </span> <span class="Conceal">¦</span> overflow?:bool <span class="Special"><-</span> and at-bottom?, at-right? @@ -300,7 +300,7 @@ if ('onhashchange' in window) { <span id="L237" class="LineNr"> 237 </span> <span class="Delimiter">{</span> <span id="L238" class="LineNr"> 238 </span> <span class="Conceal">¦</span> <span class="Comment"># not at right margin? print the character and rest of line</span> <span id="L239" class="LineNr"> 239 </span> <span class="Conceal">¦</span> <span class="muControl">break-unless</span> <a href='../065duplex_list.mu.html#L29'>next</a> -<span id="L240" class="LineNr"> 240 </span> <span class="Conceal">¦</span> at-right?:bool <span class="Special"><-</span> greater-or-equal cursor-column, <a href='../081print.mu.html#L712'>screen-width</a> +<span id="L240" class="LineNr"> 240 </span> <span class="Conceal">¦</span> at-right?:bool <span class="Special"><-</span> greater-or-equal cursor-column, <a href='../081print.mu.html#L735'>screen-width</a> <span id="L241" class="LineNr"> 241 </span> <span class="Conceal">¦</span> <span class="muControl">break-if</span> at-right? <span id="L242" class="LineNr"> 242 </span> <span class="Conceal">¦</span> curr:&:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special"><-</span> copy before-cursor <span id="L243" class="LineNr"> 243 </span> <span class="Conceal">¦</span> <a href='../081print.mu.html#L573'>move-cursor</a> <a href='../081print.mu.html#L4'>screen</a>, save-row, save-column @@ -331,12 +331,12 @@ if ('onhashchange' in window) { <span id="L268" class="LineNr"> 268 </span> old-top-idx:num <span class="Special"><-</span> <a href='../081print.mu.html#L493'>save-top-idx</a> <a href='../081print.mu.html#L4'>screen</a> <span id="L269" class="LineNr"> 269 </span> left:num <span class="Special"><-</span> get *editor, <span class="Constant">left:offset</span> <span id="L270" class="LineNr"> 270 </span> right:num <span class="Special"><-</span> get *editor, <span class="Constant">right:offset</span> -<span id="L271" class="LineNr"> 271 </span> row:num, column:num <span class="Special"><-</span> <a href='001-editor.mu.html#L122'>render</a> <a href='../081print.mu.html#L4'>screen</a>, editor +<span id="L271" class="LineNr"> 271 </span> row:num, column:num <span class="Special"><-</span> <a href='001-editor.mu.html#L107'>render</a> <a href='../081print.mu.html#L4'>screen</a>, editor <span id="L272" class="LineNr"> 272 </span> <a href='../081print.mu.html#L536'>clear-line-until</a> <a href='../081print.mu.html#L4'>screen</a>, right <span id="L273" class="LineNr"> 273 </span> row <span class="Special"><-</span> add row,<span class="Constant"> 1</span> <span id="L274" class="LineNr"> 274 </span> <a href='002-typing.mu.html#L1060'>draw-horizontal</a> <a href='../081print.mu.html#L4'>screen</a>, row, left, right, <span class="Constant">9480/horizontal-dotted</span> <span id="L275" class="LineNr"> 275 </span> row <span class="Special"><-</span> add row,<span class="Constant"> 1</span> -<span id="L276" class="LineNr"> 276 </span> <a href='001-editor.mu.html#L222'>clear-screen-from</a> <a href='../081print.mu.html#L4'>screen</a>, row, left, left, right +<span id="L276" class="LineNr"> 276 </span> <a href='001-editor.mu.html#L207'>clear-screen-from</a> <a href='../081print.mu.html#L4'>screen</a>, row, left, left, right <span id="L277" class="LineNr"> 277 </span> <a href='../081print.mu.html#L499'>assert-no-scroll</a> <a href='../081print.mu.html#L4'>screen</a>, old-top-idx <span id="L278" class="LineNr"> 278 </span>] <span id="L279" class="LineNr"> 279 </span> @@ -796,7 +796,7 @@ if ('onhashchange' in window) { <span id="L733" class="LineNr"> 733 </span> <span class="Conceal">¦</span> *editor <span class="Special"><-</span> put *editor, <span class="Constant">cursor-row:offset</span>, cursor-row <span id="L734" class="LineNr"> 734 </span> <span class="Conceal">¦</span> <span class="Comment"># if we're out of the screen, scroll down</span> <span id="L735" class="LineNr"> 735 </span> <span class="Conceal">¦</span> <span class="Delimiter">{</span> -<span id="L736" class="LineNr"> 736 </span> <span class="Conceal">¦</span> <span class="Conceal">¦</span> below-screen?:bool <span class="Special"><-</span> greater-or-equal cursor-row, <a href='../081print.mu.html#L725'>screen-height</a> +<span id="L736" class="LineNr"> 736 </span> <span class="Conceal">¦</span> <span class="Conceal">¦</span> below-screen?:bool <span class="Special"><-</span> greater-or-equal cursor-row, <a href='../081print.mu.html#L748'>screen-height</a> <span id="L737" class="LineNr"> 737 </span> <span class="Conceal">¦</span> <span class="Conceal">¦</span> <span class="muControl">break-unless</span> below-screen? <span id="L738" class="LineNr"> 738 </span><span class="Constant"> </span><span class="Conceal">¦</span><span class="Constant"> </span><span class="Conceal">¦</span><span class="Constant"> <scroll-down></span> <span id="L739" class="LineNr"> 739 </span> <span class="Conceal">¦</span> <span class="Delimiter">}</span> @@ -936,7 +936,7 @@ if ('onhashchange' in window) { <span id="L873" class="LineNr"> 873 </span> before-cursor:&:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special"><-</span> get *editor, <span class="Constant">before-cursor:offset</span> <span id="L874" class="LineNr"> 874 </span> left:num <span class="Special"><-</span> get *editor, <span class="Constant">left:offset</span> <span id="L875" class="LineNr"> 875 </span> right:num <span class="Special"><-</span> get *editor, <span class="Constant">right:offset</span> -<span id="L876" class="LineNr"> 876 </span> <a href='../081print.mu.html#L725'>screen-height</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L725'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> +<span id="L876" class="LineNr"> 876 </span> <a href='../081print.mu.html#L748'>screen-height</a>:num <span class="Special"><-</span> <a href='../081print.mu.html#L748'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> <span id="L877" class="LineNr"> 877 </span> <span class="Comment"># insert newline</span> <span id="L878" class="LineNr"> 878 </span> insert <span class="Constant">10/newline</span>, before-cursor <span id="L879" class="LineNr"> 879 </span> before-cursor <span class="Special"><-</span> <a href='../065duplex_list.mu.html#L29'>next</a> before-cursor @@ -947,7 +947,7 @@ if ('onhashchange' in window) { <span id="L884" class="LineNr"> 884 </span> *editor <span class="Special"><-</span> put *editor, <span class="Constant">cursor-column:offset</span>, cursor-column <span id="L885" class="LineNr"> 885 </span> <span class="Comment"># maybe scroll</span> <span id="L886" class="LineNr"> 886 </span> <span class="Delimiter">{</span> -<span id="L887" class="LineNr"> 887 </span> <span class="Conceal">¦</span> below-screen?:bool <span class="Special"><-</span> greater-or-equal cursor-row, <a href='../081print.mu.html#L725'>screen-height</a> <span class="Comment"># must be equal, never greater</span> +<span id="L887" class="LineNr"> 887 </span> <span class="Conceal">¦</span> below-screen?:bool <span class="Special"><-</span> greater-or-equal cursor-row, <a href='../081print.mu.html#L748'>screen-height</a> <span class="Comment"># must be equal, never greater</span> <span id="L888" class="LineNr"> 888 </span> <span class="Conceal">¦</span> <span class="muControl">break-unless</span> below-screen? <span id="L889" class="LineNr"> 889 </span><span class="Constant"> </span><span class="Conceal">¦</span><span class="Constant"> <scroll-down></span> <span id="L890" class="LineNr"> 890 </span> <span class="Conceal">¦</span> cursor-row <span class="Special"><-</span> subtract cursor-row,<span class="Constant"> 1</span> <span class="Comment"># bring back into screen range</span> @@ -1123,7 +1123,7 @@ if ('onhashchange' in window) { <span id="L1060" class="LineNr">1060 </span><span class="muRecipe">def</span> <a href='002-typing.mu.html#L1060'>draw-horizontal</a> <a href='../081print.mu.html#L4'>screen</a>:&:<a href='../081print.mu.html#L4'>screen</a>, row:num, x:num, right:num<span class="muRecipe"> -> </span><a href='../081print.mu.html#L4'>screen</a>:&:<a href='../081print.mu.html#L4'>screen</a> [ <span id="L1061" class="LineNr">1061 </span> <span class="Constant">local-scope</span> <span id="L1062" class="LineNr">1062 </span> <span class="Constant">load-ingredients</span> -<span id="L1063" class="LineNr">1063 </span> height:num <span class="Special"><-</span> <a href='../081print.mu.html#L725'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> +<span id="L1063" class="LineNr">1063 </span> height:num <span class="Special"><-</span> <a href='../081print.mu.html#L748'>screen-height</a> <a href='../081print.mu.html#L4'>screen</a> <span id="L1064" class="LineNr">1064 </span> past-bottom?:bool <span class="Special"><-</span> greater-or-equal row, height <span id="L1065" class="LineNr">1065 </span> <span class="muControl">return-if</span> past-bottom? <span id="L1066" class="LineNr">1066 </span> style:char, style-found?:bool <span class="Special"><-</span> <span class="Constant">next-ingredient</span> |