X-Git-Url: https://plomlompom.com/repos/?p=plomrogue2-experiments;a=blobdiff_plain;f=new2%2Frogue_chat_nocanvas_monochrome.html;h=7554e57ea82955e39cead0c594b30254ff1db688;hp=096b6d55fa3f8eee0726999b57b1faa44bae5da6;hb=6d71e41fbcca9a3f337751367fa0088dcb9575a7;hpb=40681bd38201ef0caf64a979c97318b090f5cbc0 diff --git a/new2/rogue_chat_nocanvas_monochrome.html b/new2/rogue_chat_nocanvas_monochrome.html index 096b6d5..7554e57 100644 --- a/new2/rogue_chat_nocanvas_monochrome.html +++ b/new2/rogue_chat_nocanvas_monochrome.html @@ -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() {