aboutsummaryrefslogtreecommitdiff
path: root/module/calp/terminal.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-04-10 22:49:23 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-04-10 23:45:29 +0200
commit9c1a4b809a8c723114a6b86262b340bf66429a10 (patch)
tree1a8c4e86b9f7de288ec6a13e30bffd00f463218a /module/calp/terminal.scm
parentAdd (sxml namespaced). (diff)
downloadcalp-9c1a4b809a8c723114a6b86262b340bf66429a10.tar.gz
calp-9c1a4b809a8c723114a6b86262b340bf66429a10.tar.xz
Add various TODOs
Diffstat (limited to 'module/calp/terminal.scm')
-rw-r--r--module/calp/terminal.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/module/calp/terminal.scm b/module/calp/terminal.scm
index 04effd68..12609e17 100644
--- a/module/calp/terminal.scm
+++ b/module/calp/terminal.scm
@@ -290,6 +290,7 @@
">")))
(newline))
+;;; TODO what is this view?
(define-method (input (this <view>) char)
(case char
((#\j #\J down) (unless (= (active-element this) (1- (page-length this)))
@@ -300,6 +301,9 @@
((#\g) (set! (active-element this) 0))
((#\G) (set! (active-element this) (1- (page-length this))))
+ ;; TODO Launch edit mode!
+ ;; TODO should edit mode be here?
+ ((#\e) 'NOOP)
((#\q) '(pop)))