about summary refs log tree commit diff stats
path: root/html/edit
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-05-26 23:50:50 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-05-26 23:50:50 -0700
commitb7fc9d3b5c4da25af0b919e65996b5dc0c3cf9f5 (patch)
tree5edcd98f4a593b50f813bf2b72af84fdfbda5668 /html/edit
parent5e7f0caab592c636f827d2c7814bc33eb96382d1 (diff)
downloadmu-b7fc9d3b5c4da25af0b919e65996b5dc0c3cf9f5.tar.gz
3879
Diffstat (limited to 'html/edit')
-rw-r--r--html/edit/003-shortcuts.mu.html4
-rw-r--r--html/edit/012-editor-undo.mu.html8
2 files changed, 6 insertions, 6 deletions
diff --git a/html/edit/003-shortcuts.mu.html b/html/edit/003-shortcuts.mu.html
index 3ad4d89e..bf5f463c 100644
--- a/html/edit/003-shortcuts.mu.html
+++ b/html/edit/003-shortcuts.mu.html
@@ -3052,8 +3052,8 @@ if ('onhashchange' in window) {
 <span id="L2990" class="LineNr">2990 </span>  *editor <span class="Special">&lt;-</span> put *editor, <span class="Constant">before-cursor:offset</span>, before-cursor
 <span id="L2991" class="LineNr">2991 </span>  <span class="Comment"># keep one line in common with previous page</span>
 <span id="L2992" class="LineNr">2992 </span>  <span class="Delimiter">{</span>
-<span id="L2993" class="LineNr">2993 </span>  <span class="Conceal">¦</span> <a href='../065duplex_list.mu.html#L528'>last</a>:char <span class="Special">&lt;-</span> get *before-cursor, <span class="Constant">value:offset</span>
-<span id="L2994" class="LineNr">2994 </span>  <span class="Conceal">¦</span> newline?:bool <span class="Special">&lt;-</span> equal <a href='../065duplex_list.mu.html#L528'>last</a>, <span class="Constant">10/newline</span>
+<span id="L2993" class="LineNr">2993 </span>  <span class="Conceal">¦</span> <a href='../065duplex_list.mu.html#L522'>last</a>:char <span class="Special">&lt;-</span> get *before-cursor, <span class="Constant">value:offset</span>
+<span id="L2994" class="LineNr">2994 </span>  <span class="Conceal">¦</span> newline?:bool <span class="Special">&lt;-</span> equal <a href='../065duplex_list.mu.html#L522'>last</a>, <span class="Constant">10/newline</span>
 <span id="L2995" class="LineNr">2995 </span>  <span class="Conceal">¦</span> <span class="muControl">break-unless</span> newline?:bool
 <span id="L2996" class="LineNr">2996 </span>  <span class="Conceal">¦</span> before-cursor <span class="Special">&lt;-</span> <a href='../065duplex_list.mu.html#L36'>prev</a> before-cursor
 <span id="L2997" class="LineNr">2997 </span>  <span class="Conceal">¦</span> *editor <span class="Special">&lt;-</span> put *editor, <span class="Constant">before-cursor:offset</span>, before-cursor
diff --git a/html/edit/012-editor-undo.mu.html b/html/edit/012-editor-undo.mu.html
index af9e02dd..2eb92fd0 100644
--- a/html/edit/012-editor-undo.mu.html
+++ b/html/edit/012-editor-undo.mu.html
@@ -478,7 +478,7 @@ if ('onhashchange' in window) {
 <span id="L415" class="LineNr"> 415 </span>  <span class="Conceal">¦</span> before-cursor <span class="Special">&lt;-</span> get *editor, <span class="Constant">before-cursor:offset</span>
 <span id="L416" class="LineNr"> 416 </span>  <span class="Conceal">¦</span> insert-from:&amp;:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special">&lt;-</span> get typing, <span class="Constant">insert-from:offset</span>  <span class="Comment"># ignore insert-to because it's already been spliced away</span>
 <span id="L417" class="LineNr"> 417 </span>  <span class="Conceal">¦</span> <span class="Comment"># assert insert-to matches next(before-cursor)</span>
-<span id="L418" class="LineNr"> 418 </span>  <span class="Conceal">¦</span> <a href='../065duplex_list.mu.html#L497'>insert-range</a> before-cursor, insert-from
+<span id="L418" class="LineNr"> 418 </span>  <span class="Conceal">¦</span> <a href='../065duplex_list.mu.html#L497'>splice</a> before-cursor, insert-from
 <span id="L419" class="LineNr"> 419 </span>  <span class="Conceal">¦</span> <span class="Comment"># assert cursor-row/cursor-column/top-of-screen match after-row/after-column/after-top-of-screen</span>
 <span id="L420" class="LineNr"> 420 </span>  <span class="Conceal">¦</span> cursor-row <span class="Special">&lt;-</span> get typing, <span class="Constant">after-row:offset</span>
 <span id="L421" class="LineNr"> 421 </span>  <span class="Conceal">¦</span> *editor <span class="Special">&lt;-</span> put *editor, <span class="Constant">cursor-row:offset</span>, cursor-row
@@ -1699,7 +1699,7 @@ if ('onhashchange' in window) {
 <span id="L1636" class="LineNr">1636 </span>  <span class="Conceal">¦</span> <span class="Conceal">¦</span> <span class="muControl">break-unless</span> coalesce?
 <span id="L1637" class="LineNr">1637 </span>  <span class="Conceal">¦</span> <span class="Conceal">¦</span> deletion <span class="Special">&lt;-</span> put deletion, <span class="Constant">delete-from:offset</span>, before-cursor
 <span id="L1638" class="LineNr">1638 </span>  <span class="Conceal">¦</span> <span class="Conceal">¦</span> backspaced-so-far:&amp;:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special">&lt;-</span> get deletion, <span class="Constant">deleted-text:offset</span>
-<span id="L1639" class="LineNr">1639 </span>  <span class="Conceal">¦</span> <span class="Conceal">¦</span> <a href='../065duplex_list.mu.html#L497'>insert-range</a> backspaced-cell, backspaced-so-far
+<span id="L1639" class="LineNr">1639 </span>  <span class="Conceal">¦</span> <span class="Conceal">¦</span> <a href='../065duplex_list.mu.html#L497'>splice</a> backspaced-cell, backspaced-so-far
 <span id="L1640" class="LineNr">1640 </span>  <span class="Conceal">¦</span> <span class="Conceal">¦</span> deletion <span class="Special">&lt;-</span> put deletion, <span class="Constant">deleted-text:offset</span>, backspaced-cell
 <span id="L1641" class="LineNr">1641 </span>  <span class="Conceal">¦</span> <span class="Conceal">¦</span> deletion <span class="Special">&lt;-</span> put deletion, <span class="Constant">after-row:offset</span>, cursor-row
 <span id="L1642" class="LineNr">1642 </span>  <span class="Conceal">¦</span> <span class="Conceal">¦</span> deletion <span class="Special">&lt;-</span> put deletion, <span class="Constant">after-column:offset</span>, cursor-column
@@ -1723,8 +1723,8 @@ if ('onhashchange' in window) {
 <span id="L1660" class="LineNr">1660 </span>  <span class="Conceal">¦</span> anchor:&amp;:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special">&lt;-</span> get deletion, <span class="Constant">delete-from:offset</span>
 <span id="L1661" class="LineNr">1661 </span>  <span class="Conceal">¦</span> <span class="muControl">break-unless</span> anchor
 <span id="L1662" class="LineNr">1662 </span>  <span class="Conceal">¦</span> deleted:&amp;:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special">&lt;-</span> get deletion, <span class="Constant">deleted-text:offset</span>
-<span id="L1663" class="LineNr">1663 </span>  <span class="Conceal">¦</span> old-cursor:&amp;:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special">&lt;-</span> <a href='../065duplex_list.mu.html#L528'>last</a> deleted
-<span id="L1664" class="LineNr">1664 </span>  <span class="Conceal">¦</span> <a href='../065duplex_list.mu.html#L497'>insert-range</a> anchor, deleted
+<span id="L1663" class="LineNr">1663 </span>  <span class="Conceal">¦</span> old-cursor:&amp;:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special">&lt;-</span> <a href='../065duplex_list.mu.html#L522'>last</a> deleted
+<span id="L1664" class="LineNr">1664 </span>  <span class="Conceal">¦</span> <a href='../065duplex_list.mu.html#L497'>splice</a> anchor, deleted
 <span id="L1665" class="LineNr">1665 </span>  <span class="Conceal">¦</span> <span class="Comment"># assert cursor-row/cursor-column/top-of-screen match after-row/after-column/after-top-of-screen</span>
 <span id="L1666" class="LineNr">1666 </span>  <span class="Conceal">¦</span> before-cursor <span class="Special">&lt;-</span> copy old-cursor
 <span id="L1667" class="LineNr">1667 </span>  <span class="Conceal">¦</span> cursor-row <span class="Special">&lt;-</span> get deletion, <span class="Constant">before-row:offset</span>