about summary refs log tree commit diff stats
path: root/edit.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-15 20:52:21 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-15 20:52:21 -0700
commite94f519097a933458ef533696539e859b96874e9 (patch)
tree16c19d45dcaf444318edb2e44f05f8c85efb682d /edit.mu
parentb3ae8194404c0e91279a64a2b4026162a44c9e9e (diff)
downloadmu-e94f519097a933458ef533696539e859b96874e9.tar.gz
1790 - move to end of line
Diffstat (limited to 'edit.mu')
-rw-r--r--edit.mu145
1 files changed, 145 insertions, 0 deletions
diff --git a/edit.mu b/edit.mu
index dfc9a67b..2b31abbd 100644
--- a/edit.mu
+++ b/edit.mu
@@ -615,6 +615,13 @@ recipe handle-event [
       move-to-start-of-line editor:address:editor-data
       reply
     }
+    # ctrl-e
+    {
+      ctrl-e?:boolean <- equal c:address:character/deref, 5:literal/ctrl-e
+      break-unless ctrl-e?:boolean
+      move-to-end-of-line editor:address:editor-data
+      reply
+    }
     # otherwise type it in
     insert-at-cursor editor:address:editor-data, c:address:character/deref, screen:address
     reply
@@ -740,6 +747,13 @@ recipe handle-event [
     move-to-start-of-line editor:address:editor-data
     reply
   }
+  # end
+  {
+    end?:boolean <- equal k:address:number/deref, 65520:literal/end
+    break-unless end?:boolean
+    move-to-end-of-line editor:address:editor-data
+    reply
+  }
 ]
 
 # process click, return if it was on current editor
@@ -880,6 +894,26 @@ recipe move-to-start-of-line [
   }
 ]
 
+recipe move-to-end-of-line [
+  local-scope
+  editor:address:editor-data <- next-ingredient
+  before-cursor:address:address:duplex-list <- get-address editor:address:editor-data/deref, before-cursor:offset
+  cursor-column:address:number <- get-address editor:address:editor-data/deref, cursor-column:offset
+  # while not at start of line, move 
+  {
+    next:address:duplex-list <- next-duplex before-cursor:address:address:duplex-list/deref
+    break-unless next:address:duplex-list  # end of text
+    nextc:character <- get next:address:duplex-list/deref, value:offset
+    at-end-of-line?:boolean <- equal nextc:character, 10:literal/newline
+    break-if at-end-of-line?:boolean
+    before-cursor:address:address:duplex-list/deref <- copy next:address:duplex-list
+    cursor-column:address:number/deref <- add cursor-column:address:number/deref, 1:literal
+    loop
+  }
+  # move one past end of line
+  cursor-column:address:number/deref <- add cursor-column:address:number/deref, 1:literal
+]
+
 recipe render-all [
   local-scope
   screen:address <- next-ingredient
@@ -1954,6 +1988,117 @@ scenario editor-moves-to-start-of-line-with-home-2 [
   ]
 ]
 
+scenario editor-moves-to-start-of-line-with-ctrl-e [
+  assume-screen 10:literal/width, 5:literal/height
+  1:address:array:character <- new [123
+456]
+  2:address:editor-data <- new-editor 1:address:array:character, screen:address, 0:literal/left, 10:literal/right
+  # start on first line, press ctrl-e
+  assume-console [
+    left-click 1, 1
+    type [e]  # ctrl-e
+  ]
+  3:event/ctrl-e <- merge 0:literal/text, 5:literal/ctrl-e, 0:literal/dummy, 0:literal/dummy
+  replace-in-console 101:literal/e, 3:event/ctrl-e
+  run [
+    editor-event-loop screen:address, console:address, 2:address:editor-data
+    4:number <- get 2:address:editor-data/deref, cursor-row:offset
+    5:number <- get 2:address:editor-data/deref, cursor-column:offset
+  ]
+  # cursor moves to end of line
+  memory-should-contain [
+    4 <- 1
+    5 <- 3
+  ]
+  # editor inserts future characters at cursor
+  assume-console [
+    type [z]
+  ]
+  run [
+    editor-event-loop screen:address, console:address, 2:address:editor-data
+    4:number <- get 2:address:editor-data/deref, cursor-row:offset
+    5:number <- get 2:address:editor-data/deref, cursor-column:offset
+  ]
+  memory-should-contain [
+    4 <- 1
+    5 <- 4
+  ]
+  screen-should-contain [
+    .          .
+    .123z      .
+    .456       .
+    .          .
+  ]
+]
+
+scenario editor-moves-to-end-of-line-with-ctrl-e-2 [
+  assume-screen 10:literal/width, 5:literal/height
+  1:address:array:character <- new [123
+456]
+  2:address:editor-data <- new-editor 1:address:array:character, screen:address, 0:literal/left, 10:literal/right
+  # start on second line (no newline after), press ctrl-e
+  assume-console [
+    left-click 2, 1
+    type [e]  # ctrl-e
+  ]
+  3:event/ctrl-e <- merge 0:literal/text, 5:literal/ctrl-e, 0:literal/dummy, 0:literal/dummy
+  replace-in-console 101:literal/e, 3:event/ctrl-e
+  run [
+    editor-event-loop screen:address, console:address, 2:address:editor-data
+    4:number <- get 2:address:editor-data/deref, cursor-row:offset
+    5:number <- get 2:address:editor-data/deref, cursor-column:offset
+  ]
+  # cursor moves to end of line
+  memory-should-contain [
+    4 <- 2
+    5 <- 3
+  ]
+]
+
+scenario editor-moves-to-end-of-line-with-end [
+  assume-screen 10:literal/width, 5:literal/height
+  1:address:array:character <- new [123
+456]
+  2:address:editor-data <- new-editor 1:address:array:character, screen:address, 0:literal/left, 10:literal/right
+  # start on first line, press 'end'
+  assume-console [
+    left-click 1, 1
+    press 65520  # 'end'
+  ]
+  run [
+    editor-event-loop screen:address, console:address, 2:address:editor-data
+    3:number <- get 2:address:editor-data/deref, cursor-row:offset
+    4:number <- get 2:address:editor-data/deref, cursor-column:offset
+  ]
+  # cursor moves to end of line
+  memory-should-contain [
+    3 <- 1
+    4 <- 3
+  ]
+]
+
+scenario editor-moves-to-end-of-line-with-end-2 [
+  assume-screen 10:literal/width, 5:literal/height
+  1:address:array:character <- new [123
+456]
+  2:address:editor-data <- new-editor 1:address:array:character, screen:address, 0:literal/left, 10:literal/right
+  # start on second line (no newline after), press 'end'
+  assume-console [
+    left-click 2, 1
+    press 65520  # 'end'
+  ]
+  run [
+    editor-event-loop screen:address, console:address, 2:address:editor-data
+    3:number <- get 2:address:editor-data/deref, cursor-row:offset
+    4:number <- get 2:address:editor-data/deref, cursor-column:offset
+  ]
+  # cursor moves to end of line
+  memory-should-contain [
+    3 <- 2
+    4 <- 3
+  ]
+]
+
 scenario point-at-multiple-editors [
   assume-screen 30:literal/width, 5:literal/height
   # initialize both halves of screen