about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-06-05 11:56:13 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-06-05 11:56:13 -0700
commit48522591f85f272230bf628213675c41db3c08ae (patch)
tree206787680881136ca5022f4f5a4c48d31afd5b3a
parent99523f654ffc5d183de05c56965cef5ed0c1cb4e (diff)
downloadmu-48522591f85f272230bf628213675c41db3c08ae.tar.gz
refresh edited definitions on ctrl-s
-rw-r--r--shell/environment.mu18
-rw-r--r--shell/global.mu41
2 files changed, 57 insertions, 2 deletions
diff --git a/shell/environment.mu b/shell/environment.mu
index 6f0718b1..4bf90c54 100644
--- a/shell/environment.mu
+++ b/shell/environment.mu
@@ -105,11 +105,25 @@ fn edit-environment _self: (addr environment), key: grapheme, data-disk: (addr d
     #
     return
   }
-  # ctrl-s: always send to repl
+  # ctrl-s: send multiple places
   {
     compare key, 0x13/ctrl-s
     break-if-!=
-    edit-sandbox sandbox, key, globals, data-disk, 1/tweak-real-screen
+    {
+      # cursor in function modal? do nothing
+      var cursor-in-function-modal-a/eax: (addr boolean) <- get self, cursor-in-function-modal?
+      compare *cursor-in-function-modal-a, 0/false
+      break-if-!=
+      {
+        # cursor in globals? update current definition
+        var cursor-in-globals-a/edx: (addr boolean) <- get self, cursor-in-globals?
+        compare *cursor-in-globals-a, 0/false
+        break-if-=
+        edit-globals globals, key
+      }
+      # update sandbox whether the cursor is in globals or sandbox
+      edit-sandbox sandbox, key, globals, data-disk, 1/tweak-real-screen
+    }
     return
   }
   # ctrl-g: go to a function (or the repl)
diff --git a/shell/global.mu b/shell/global.mu
index b8b05c23..b4641c60 100644
--- a/shell/global.mu
+++ b/shell/global.mu
@@ -220,6 +220,14 @@ fn render-globals-menu screen: (addr screen), _self: (addr global-table) {
 
 fn edit-globals _self: (addr global-table), key: grapheme {
   var self/esi: (addr global-table) <- copy _self
+  # ctrl-s
+  {
+    compare key, 0x13/ctrl-s
+    break-if-!=
+    #
+    refresh-cursor-definition self
+    return
+  }
   var cursor-index-addr/ecx: (addr int) <- get self, cursor-index
   var cursor-index/ecx: int <- copy *cursor-index-addr
   var data-ah/eax: (addr handle array global) <- get self, data
@@ -231,6 +239,39 @@ fn edit-globals _self: (addr global-table), key: grapheme {
   edit-gap-buffer curr-editor, key
 }
 
+fn refresh-cursor-definition _self: (addr global-table) {
+  var self/esi: (addr global-table) <- copy _self
+  var cursor-index/edx: (addr int) <- get self, cursor-index
+  refresh-definition self, *cursor-index
+}
+
+fn refresh-definition _self: (addr global-table), _index: int {
+  var self/esi: (addr global-table) <- copy _self
+  var data-ah/eax: (addr handle array global) <- get self, data
+  var data/eax: (addr array global) <- lookup *data-ah
+  var index/ecx: int <- copy _index
+  var offset/ecx: (offset global) <- compute-offset data, index
+  var curr-global/ecx: (addr global) <- index data, offset
+  var curr-input-ah/eax: (addr handle gap-buffer) <- get curr-global, input
+  var curr-input/eax: (addr gap-buffer) <- lookup *curr-input-ah
+  var read-result-h: (handle cell)
+  var read-result-ah/edx: (addr handle cell) <- address read-result-h
+  var trace-storage: trace
+  var trace/ebx: (addr trace) <- address trace-storage
+  initialize-trace trace, 1/only-errors, 0x10/capacity, 0/visible
+  read-cell curr-input, read-result-ah, trace
+  macroexpand read-result-ah, self, trace
+  var nil-h: (handle cell)
+  {
+    var nil-ah/eax: (addr handle cell) <- address nil-h
+    allocate-pair nil-ah
+  }
+  var curr-value-ah/eax: (addr handle cell) <- get curr-global, value
+  debug-print "GL", 4/fg, 0/bg
+  evaluate read-result-ah, curr-value-ah, nil-h, self, trace, 0/no-screen-cell, 0/no-keyboard-cell, 1/call-number
+  debug-print "GZ", 4/fg, 0/bg
+}
+
 fn assign-or-create-global _self: (addr global-table), name: (addr array byte), value: (handle cell), trace: (addr trace) {
   var self/esi: (addr global-table) <- copy _self
   compare self, 0