home · contact · privacy
Improved input prompt handling.
authorChristian Heller <c.heller@plomlompom.de>
Thu, 29 Oct 2020 00:57:22 +0000 (01:57 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Thu, 29 Oct 2020 00:57:22 +0000 (01:57 +0100)
new2/rogue_chat_nocanvas_monochrome.html

index 096b6d55fa3f8eee0726999b57b1faa44bae5da6..7554e57ea82955e39cead0c594b30254ff1db688 100644 (file)
@@ -173,6 +173,7 @@ let mode_edit = new Mode('edit', false, false);
 let tui = {
   mode: mode_chat,
   log: [],
+  input_prompt: '> ',
   input: '',
   input_lines: [],
   window_width: terminal.cols / 2,
@@ -258,14 +259,14 @@ let tui = {
       }
   },
   add_to_input: function(str) {
-      if (this.input.length + str.length > this.window_width * terminal.rows) {
+      if (this.input_prompt.length + this.input.length + str.length > this.window_width * terminal.rows) {
           return;
       }
       this.input += str;
       this.recalc_input_lines();
   },
   recalc_input_lines: function() {
-      this.input_lines = this.msg_into_lines_of_width("> " + this.input, this.window_width);
+      this.input_lines = this.msg_into_lines_of_width(this.input_prompt + this.input, this.window_width);
       this.height_input = this.input_lines.length;
   },
   shorten_input: function() {