2019-08-30 20:57:54 +02:00
|
|
|
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Linux version
|
|
|
|
// Will serve as more advanced input method
|
|
|
|
// Based on the work of https://github.com/AmokHuginnsson/replxx
|
|
|
|
|
|
|
|
module readline
|
|
|
|
|
2019-08-31 19:09:02 +02:00
|
|
|
import term
|
|
|
|
|
2019-08-30 20:57:54 +02:00
|
|
|
#include <termios.h>
|
2019-09-01 19:00:14 +02:00
|
|
|
#include <sys/ioctl.h>
|
2019-08-30 20:57:54 +02:00
|
|
|
|
2019-09-01 19:00:14 +02:00
|
|
|
// Used to change the terminal options
|
2019-08-30 20:57:54 +02:00
|
|
|
struct termios {
|
|
|
|
mut:
|
|
|
|
c_iflag int
|
|
|
|
c_oflag int
|
|
|
|
c_cflag int
|
|
|
|
c_lflag int
|
|
|
|
c_cc [12]int //NCCS == 12. Cant use the defined value here
|
|
|
|
}
|
|
|
|
|
2019-09-14 22:54:14 +02:00
|
|
|
// Used to collect the screen information
|
2019-09-01 19:00:14 +02:00
|
|
|
struct winsize {
|
|
|
|
ws_row u16
|
|
|
|
ws_col u16
|
|
|
|
ws_xpixel u16
|
|
|
|
ws_ypixel u16
|
|
|
|
}
|
|
|
|
|
2019-08-30 20:57:54 +02:00
|
|
|
struct Readline {
|
2019-08-31 19:09:02 +02:00
|
|
|
mut:
|
2019-08-30 20:57:54 +02:00
|
|
|
is_raw bool
|
|
|
|
orig_termios termios
|
2019-09-23 12:43:24 +02:00
|
|
|
current ustring // Line being edited
|
2019-08-31 19:09:02 +02:00
|
|
|
cursor int // Cursor position
|
|
|
|
overwrite bool
|
2019-09-01 19:00:14 +02:00
|
|
|
cursor_row_offset int
|
2019-09-02 15:29:40 +02:00
|
|
|
prompt string
|
2019-09-23 12:43:24 +02:00
|
|
|
previous_lines []ustring
|
2019-09-03 11:52:00 +02:00
|
|
|
search_index int
|
2019-09-15 03:33:31 +02:00
|
|
|
is_tty bool
|
2019-08-31 19:09:02 +02:00
|
|
|
}
|
|
|
|
|
2019-09-01 19:00:14 +02:00
|
|
|
|
2019-08-31 19:09:02 +02:00
|
|
|
// Defines actions to execute
|
|
|
|
enum Action {
|
|
|
|
eof
|
|
|
|
nothing
|
|
|
|
insert_character
|
|
|
|
commit_line
|
|
|
|
delete_left
|
|
|
|
delete_right
|
|
|
|
move_cursor_left
|
|
|
|
move_cursor_right
|
|
|
|
move_cursor_begining
|
|
|
|
move_cursor_end
|
|
|
|
move_cursor_word_left
|
|
|
|
move_cursor_word_right
|
|
|
|
history_previous
|
|
|
|
history_next
|
|
|
|
overwrite
|
2019-09-02 13:14:40 +02:00
|
|
|
clear_screen
|
2019-09-05 13:55:28 +02:00
|
|
|
suspend
|
2019-08-30 20:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Toggle raw mode of the terminal by changing its attributes
|
|
|
|
pub fn (r mut Readline) enable_raw_mode() {
|
|
|
|
if ( C.tcgetattr(0, &r.orig_termios) == -1 ) {
|
2019-09-15 03:33:31 +02:00
|
|
|
r.is_tty = false
|
|
|
|
return
|
2019-08-30 20:57:54 +02:00
|
|
|
}
|
|
|
|
mut raw := r.orig_termios
|
|
|
|
raw.c_iflag &= ~( C.BRKINT | C.ICRNL | C.INPCK | C.ISTRIP | C.IXON )
|
|
|
|
raw.c_cflag |= ( C.CS8 )
|
|
|
|
raw.c_lflag &= ~( C.ECHO | C.ICANON | C.IEXTEN | C.ISIG )
|
|
|
|
raw.c_cc[C.VMIN] = 1
|
|
|
|
raw.c_cc[C.VTIME] = 0
|
|
|
|
C.tcsetattr(0, C.TCSADRAIN, &raw)
|
|
|
|
r.is_raw = true
|
2019-09-15 03:33:31 +02:00
|
|
|
r.is_tty = true
|
2019-08-30 20:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Not catching the SIGUSER (CTRL+C) Signal
|
2019-09-15 03:33:31 +02:00
|
|
|
pub fn (r mut Readline) enable_raw_mode2() {
|
2019-08-30 20:57:54 +02:00
|
|
|
if ( C.tcgetattr(0, &r.orig_termios) == -1 ) {
|
2019-09-15 03:33:31 +02:00
|
|
|
r.is_tty = false
|
|
|
|
return
|
2019-08-30 20:57:54 +02:00
|
|
|
}
|
|
|
|
mut raw := r.orig_termios
|
|
|
|
raw.c_iflag &= ~( C.BRKINT | C.ICRNL | C.INPCK | C.ISTRIP | C.IXON )
|
|
|
|
raw.c_cflag |= ( C.CS8 )
|
|
|
|
raw.c_lflag &= ~( C.ECHO | C.ICANON | C.IEXTEN )
|
|
|
|
raw.c_cc[C.VMIN] = 1
|
|
|
|
raw.c_cc[C.VTIME] = 0
|
|
|
|
C.tcsetattr(0, C.TCSADRAIN, &raw)
|
2019-09-15 03:33:31 +02:00
|
|
|
r.is_raw = true
|
|
|
|
r.is_tty = true
|
2019-08-30 20:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reset back the terminal to its default value
|
|
|
|
pub fn (r Readline) disable_raw_mode() {
|
|
|
|
if r.is_raw {
|
|
|
|
C.tcsetattr(0, C.TCSADRAIN, &r.orig_termios)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read single char
|
2019-09-23 12:43:24 +02:00
|
|
|
fn (r Readline) read_char() int {
|
|
|
|
return utf8_getchar()
|
2019-08-30 20:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-08-31 19:09:02 +02:00
|
|
|
// Main function of the readline module
|
|
|
|
// Will loop and ingest characters until EOF or Enter
|
|
|
|
// Returns the completed line
|
2019-09-23 12:43:24 +02:00
|
|
|
pub fn (r mut Readline) read_line_utf8(prompt string) ustring {
|
|
|
|
r.current = ''.ustring()
|
2019-08-31 19:09:02 +02:00
|
|
|
r.cursor = 0
|
2019-09-02 15:29:40 +02:00
|
|
|
r.prompt = prompt
|
2019-09-03 11:52:00 +02:00
|
|
|
r.search_index = 0
|
|
|
|
if r.previous_lines.len <= 1 {
|
2019-09-23 12:43:24 +02:00
|
|
|
r.previous_lines << ''.ustring()
|
|
|
|
r.previous_lines << ''.ustring()
|
2019-09-03 11:52:00 +02:00
|
|
|
}
|
|
|
|
else {
|
2019-09-23 12:43:24 +02:00
|
|
|
r.previous_lines[0] = ''.ustring()
|
2019-09-03 11:52:00 +02:00
|
|
|
}
|
2019-08-30 20:57:54 +02:00
|
|
|
|
2019-09-02 15:29:40 +02:00
|
|
|
print(r.prompt)
|
2019-08-30 20:57:54 +02:00
|
|
|
for {
|
|
|
|
c := r.read_char()
|
2019-08-31 19:09:02 +02:00
|
|
|
a := r.analyse(c)
|
|
|
|
if r.execute(a, c) {
|
2019-08-30 20:57:54 +02:00
|
|
|
break
|
|
|
|
}
|
2019-08-31 19:09:02 +02:00
|
|
|
}
|
2019-09-23 12:43:24 +02:00
|
|
|
r.previous_lines[0] = ''.ustring()
|
2019-09-03 11:52:00 +02:00
|
|
|
r.search_index = 0
|
2019-08-31 19:09:02 +02:00
|
|
|
return r.current
|
|
|
|
}
|
|
|
|
|
2019-09-23 12:43:24 +02:00
|
|
|
pub fn (r mut Readline) read_line(prompt string) string {
|
|
|
|
return r.read_line_utf8(prompt).s
|
|
|
|
}
|
|
|
|
|
2019-08-31 19:09:02 +02:00
|
|
|
fn (r Readline) analyse(c byte) Action {
|
|
|
|
switch c {
|
|
|
|
case `\0`: return Action.eof
|
|
|
|
case 0x3 : return Action.eof // End of Text
|
|
|
|
case 0x4 : return Action.eof // End of Transmission
|
|
|
|
case 255 : return Action.eof
|
|
|
|
case `\n`: return Action.commit_line
|
|
|
|
case `\r`: return Action.commit_line
|
2019-09-02 13:14:40 +02:00
|
|
|
case `\f`: return Action.clear_screen // CTRL + L
|
2019-08-31 19:09:02 +02:00
|
|
|
case `\b`: return Action.delete_left // Backspace
|
|
|
|
case 127 : return Action.delete_left // DEL
|
|
|
|
case 27 : return r.analyse_control() // ESC
|
|
|
|
case 1 : return Action.move_cursor_begining // ^A
|
|
|
|
case 5 : return Action.move_cursor_end // ^E
|
2019-09-05 13:55:28 +02:00
|
|
|
case 26 : return Action.suspend // CTRL + Z, SUB
|
|
|
|
default : return if c >= ` ` { Action.insert_character } else { Action.nothing }
|
2019-08-31 19:09:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (r Readline) analyse_control() Action {
|
|
|
|
c := r.read_char()
|
|
|
|
switch c {
|
|
|
|
case `[`:
|
|
|
|
sequence := r.read_char()
|
|
|
|
switch sequence {
|
|
|
|
case `C`: return Action.move_cursor_right
|
|
|
|
case `D`: return Action.move_cursor_left
|
2019-09-03 11:52:00 +02:00
|
|
|
case `B`: return Action.history_next
|
|
|
|
case `A`: return Action.history_previous
|
2019-08-31 20:24:33 +02:00
|
|
|
case `1`: return r.analyse_extended_control()
|
2019-09-04 20:08:41 +02:00
|
|
|
case `2`: return r.analyse_extended_control_no_eat(sequence)
|
|
|
|
case `3`: return r.analyse_extended_control_no_eat(sequence)
|
2019-08-31 20:24:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return Action.nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (r Readline) analyse_extended_control() Action {
|
|
|
|
r.read_char() // Removes ;
|
|
|
|
c := r.read_char()
|
|
|
|
switch c {
|
|
|
|
case `5`:
|
|
|
|
direction := r.read_char()
|
|
|
|
switch direction {
|
|
|
|
case `C`: return Action.move_cursor_word_right
|
|
|
|
case `D`: return Action.move_cursor_word_left
|
2019-08-30 20:57:54 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-31 19:09:02 +02:00
|
|
|
return Action.nothing
|
|
|
|
}
|
|
|
|
|
2019-09-04 20:08:41 +02:00
|
|
|
fn (r Readline) analyse_extended_control_no_eat(last_c byte) Action {
|
2019-09-02 12:14:46 +02:00
|
|
|
c := r.read_char()
|
|
|
|
switch c {
|
2019-09-04 20:08:41 +02:00
|
|
|
case `~`:
|
|
|
|
switch last_c {
|
|
|
|
case `3`: return Action.delete_right // Suppr key
|
|
|
|
case `2`: return Action.overwrite
|
|
|
|
}
|
2019-09-02 12:14:46 +02:00
|
|
|
}
|
|
|
|
return Action.nothing
|
|
|
|
}
|
|
|
|
|
2019-09-23 12:43:24 +02:00
|
|
|
fn (r mut Readline) execute(a Action, c int) bool {
|
2019-08-31 19:09:02 +02:00
|
|
|
switch a {
|
2019-09-04 20:08:41 +02:00
|
|
|
case Action.eof: return r.eof()
|
2019-08-31 19:09:02 +02:00
|
|
|
case Action.insert_character: r.insert_character(c)
|
|
|
|
case Action.commit_line: return r.commit_line()
|
|
|
|
case Action.delete_left: r.delete_character()
|
2019-09-02 12:14:46 +02:00
|
|
|
case Action.delete_right: r.suppr_character()
|
2019-08-31 20:24:33 +02:00
|
|
|
case Action.move_cursor_left: r.move_cursor_left()
|
|
|
|
case Action.move_cursor_right: r.move_cursor_right()
|
|
|
|
case Action.move_cursor_begining: r.move_cursor_begining()
|
|
|
|
case Action.move_cursor_end: r.move_cursor_end()
|
|
|
|
case Action.move_cursor_word_left: r.move_cursor_word_left()
|
|
|
|
case Action.move_cursor_word_right: r.move_cursor_word_right()
|
2019-09-03 11:52:00 +02:00
|
|
|
case Action.history_previous: r.history_previous()
|
|
|
|
case Action.history_next: r.history_next()
|
2019-09-04 20:08:41 +02:00
|
|
|
case Action.overwrite: r.switch_overwrite()
|
2019-09-02 13:14:40 +02:00
|
|
|
case Action.clear_screen: r.clear_screen()
|
2019-09-05 13:55:28 +02:00
|
|
|
case Action.suspend: r.suspend()
|
2019-08-31 19:09:02 +02:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-09-01 19:00:14 +02:00
|
|
|
fn get_screen_columns() int {
|
|
|
|
ws := winsize{}
|
2019-09-15 03:33:31 +02:00
|
|
|
cols := if C.ioctl(1, C.TIOCGWINSZ, &ws) == -1 { 80 } else { int(ws.ws_col) }
|
|
|
|
return cols
|
2019-09-01 19:00:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn shift_cursor(xpos int, yoffset int) {
|
|
|
|
if yoffset != 0 {
|
|
|
|
if yoffset > 0 {
|
|
|
|
term.cursor_down(yoffset)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
term.cursor_up(- yoffset)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Absolute X position
|
|
|
|
print('\x1b[${xpos + 1}G')
|
|
|
|
}
|
|
|
|
|
|
|
|
fn calculate_screen_position(x_in int, y_in int, screen_columns int, char_count int, out mut []int) {
|
|
|
|
mut x := x_in
|
|
|
|
mut y := y_in
|
|
|
|
out[0] = x
|
|
|
|
out[1] = y
|
|
|
|
for chars_remaining := char_count; chars_remaining > 0; {
|
|
|
|
chars_this_row := if ( (x + chars_remaining) < screen_columns) { chars_remaining } else { screen_columns - x }
|
|
|
|
out[0] = x + chars_this_row
|
|
|
|
out[1] = y
|
|
|
|
chars_remaining -= chars_this_row
|
|
|
|
x = 0
|
|
|
|
y++
|
|
|
|
}
|
|
|
|
if out[0] == screen_columns {
|
|
|
|
out[0] = 0
|
|
|
|
out[1]++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-31 19:09:02 +02:00
|
|
|
// Will redraw the line
|
2019-09-01 19:00:14 +02:00
|
|
|
fn (r mut Readline) refresh_line() {
|
|
|
|
mut end_of_input := [0, 0]
|
2019-09-02 15:29:40 +02:00
|
|
|
calculate_screen_position(r.prompt.len, 0, get_screen_columns(), r.current.len, mut end_of_input)
|
2019-09-23 12:43:24 +02:00
|
|
|
end_of_input[1] += r.current.count('\n'.ustring())
|
2019-09-01 19:00:14 +02:00
|
|
|
mut cursor_pos := [0, 0]
|
2019-09-02 15:29:40 +02:00
|
|
|
calculate_screen_position(r.prompt.len, 0, get_screen_columns(), r.cursor, mut cursor_pos)
|
2019-09-01 19:00:14 +02:00
|
|
|
|
|
|
|
shift_cursor(0, -r.cursor_row_offset)
|
2019-08-31 19:09:02 +02:00
|
|
|
term.erase_toend()
|
2019-09-02 15:29:40 +02:00
|
|
|
print(r.prompt)
|
2019-08-31 19:09:02 +02:00
|
|
|
print(r.current)
|
2019-09-01 19:00:14 +02:00
|
|
|
if end_of_input[0] == 0 && end_of_input[1] > 0 {
|
|
|
|
print('\n')
|
|
|
|
}
|
|
|
|
shift_cursor(cursor_pos[0], - (end_of_input[1] - cursor_pos[1]))
|
|
|
|
r.cursor_row_offset = cursor_pos[1]
|
2019-08-31 19:09:02 +02:00
|
|
|
}
|
|
|
|
|
2019-09-04 20:08:41 +02:00
|
|
|
// End the line without a newline
|
|
|
|
fn (r mut Readline) eof() bool {
|
|
|
|
r.previous_lines.insert(1, r.current)
|
2019-09-23 12:43:24 +02:00
|
|
|
r.cursor = r.current.len
|
|
|
|
r.refresh_line()
|
2019-09-04 20:08:41 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-09-23 12:43:24 +02:00
|
|
|
fn (r mut Readline) insert_character(c int) {
|
2019-09-04 20:08:41 +02:00
|
|
|
if !r.overwrite || r.cursor == r.current.len {
|
2019-09-23 12:43:24 +02:00
|
|
|
r.current = r.current.left(r.cursor).ustring() + utf32_to_str(u32(c)).ustring() + r.current.right(r.cursor).ustring()
|
2019-08-31 19:09:02 +02:00
|
|
|
} else {
|
2019-09-23 12:43:24 +02:00
|
|
|
r.current = r.current.left(r.cursor).ustring() + utf32_to_str(u32(c)).ustring() + r.current.right(r.cursor + 1).ustring()
|
2019-08-31 19:09:02 +02:00
|
|
|
}
|
|
|
|
r.cursor++
|
2019-09-02 15:29:40 +02:00
|
|
|
// Refresh the line to add the new character
|
2019-09-15 03:33:31 +02:00
|
|
|
if r.is_tty {
|
|
|
|
r.refresh_line()
|
|
|
|
}
|
2019-08-31 19:09:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Removes the character behind cursor.
|
|
|
|
fn (r mut Readline) delete_character() {
|
|
|
|
if r.cursor <= 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.cursor--
|
2019-09-23 12:43:24 +02:00
|
|
|
r.current = r.current.left(r.cursor).ustring() + r.current.right(r.cursor + 1).ustring()
|
2019-09-01 19:00:14 +02:00
|
|
|
r.refresh_line()
|
2019-08-31 19:09:02 +02:00
|
|
|
}
|
|
|
|
|
2019-09-02 12:14:46 +02:00
|
|
|
// Removes the character in front of cursor.
|
|
|
|
fn (r mut Readline) suppr_character() {
|
|
|
|
if r.cursor > r.current.len {
|
|
|
|
return
|
|
|
|
}
|
2019-09-23 12:43:24 +02:00
|
|
|
r.current = r.current.left(r.cursor).ustring() + r.current.right(r.cursor + 1).ustring()
|
2019-09-02 12:14:46 +02:00
|
|
|
r.refresh_line()
|
|
|
|
}
|
|
|
|
|
2019-08-31 19:09:02 +02:00
|
|
|
// Add a line break then stops the main loop
|
|
|
|
fn (r mut Readline) commit_line() bool {
|
2019-09-03 11:52:00 +02:00
|
|
|
r.previous_lines.insert(1, r.current)
|
2019-09-23 12:43:24 +02:00
|
|
|
a := '\n'.ustring()
|
|
|
|
r.current = r.current + a
|
|
|
|
r.cursor = r.current.len
|
|
|
|
r.refresh_line()
|
2019-09-15 03:33:31 +02:00
|
|
|
if r.is_tty {
|
|
|
|
println('')
|
|
|
|
}
|
2019-08-31 19:09:02 +02:00
|
|
|
return true
|
|
|
|
}
|
2019-08-31 20:24:33 +02:00
|
|
|
|
|
|
|
fn (r mut Readline) move_cursor_left() {
|
|
|
|
if r.cursor > 0 {
|
|
|
|
r.cursor--
|
2019-09-01 19:00:14 +02:00
|
|
|
r.refresh_line()
|
2019-08-31 20:24:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (r mut Readline) move_cursor_right() {
|
|
|
|
if r.cursor < r.current.len {
|
|
|
|
r.cursor++
|
2019-09-01 19:00:14 +02:00
|
|
|
r.refresh_line()
|
2019-08-31 20:24:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (r mut Readline) move_cursor_begining() {
|
|
|
|
r.cursor = 0
|
2019-09-01 19:00:14 +02:00
|
|
|
r.refresh_line()
|
2019-08-31 20:24:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn (r mut Readline) move_cursor_end() {
|
|
|
|
r.cursor = r.current.len
|
2019-09-01 19:00:14 +02:00
|
|
|
r.refresh_line()
|
2019-08-31 20:24:33 +02:00
|
|
|
}
|
|
|
|
|
2019-09-01 19:00:14 +02:00
|
|
|
// Check if the character is considered as a word-breaking character
|
2019-09-23 12:43:24 +02:00
|
|
|
fn (r Readline) is_break_character(c string) bool {
|
2019-08-31 20:24:33 +02:00
|
|
|
break_characters := ' \t\v\f\a\b\r\n`~!@#$%^&*()-=+[{]}\\|;:\'",<.>/?'
|
2019-09-23 12:43:24 +02:00
|
|
|
return break_characters.contains(c)
|
2019-08-31 20:24:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn (r mut Readline) move_cursor_word_left() {
|
|
|
|
if r.cursor > 0 {
|
2019-09-23 12:43:24 +02:00
|
|
|
for ; r.cursor > 0 && r.is_break_character(r.current.at(r.cursor - 1)); r.cursor-- {}
|
|
|
|
for ; r.cursor > 0 && !r.is_break_character(r.current.at(r.cursor - 1)); r.cursor-- {}
|
2019-09-01 19:00:14 +02:00
|
|
|
r.refresh_line()
|
2019-08-31 20:24:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (r mut Readline) move_cursor_word_right() {
|
|
|
|
if r.cursor < r.current.len {
|
2019-09-23 12:43:24 +02:00
|
|
|
for ; r.cursor < r.current.len && r.is_break_character(r.current.at(r.cursor)); r.cursor++ {}
|
|
|
|
for ; r.cursor < r.current.len && !r.is_break_character(r.current.at(r.cursor)); r.cursor++ {}
|
2019-09-01 19:00:14 +02:00
|
|
|
r.refresh_line()
|
2019-08-31 20:24:33 +02:00
|
|
|
}
|
|
|
|
}
|
2019-09-02 13:14:40 +02:00
|
|
|
|
2019-09-04 20:08:41 +02:00
|
|
|
fn (r mut Readline) switch_overwrite() {
|
|
|
|
r.overwrite = !r.overwrite
|
|
|
|
}
|
|
|
|
|
2019-09-02 13:14:40 +02:00
|
|
|
fn (r mut Readline) clear_screen() {
|
|
|
|
term.set_cursor_position(1, 1)
|
|
|
|
term.erase_clear()
|
|
|
|
r.refresh_line()
|
|
|
|
}
|
2019-09-03 11:52:00 +02:00
|
|
|
|
|
|
|
fn (r mut Readline) history_previous() {
|
|
|
|
if r.search_index + 2 >= r.previous_lines.len {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if r.search_index == 0 {
|
|
|
|
r.previous_lines[0] = r.current
|
|
|
|
}
|
|
|
|
r.search_index++
|
|
|
|
r.current = r.previous_lines[r.search_index]
|
|
|
|
r.cursor = r.current.len
|
|
|
|
r.refresh_line()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (r mut Readline) history_next() {
|
|
|
|
if r.search_index <= 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.search_index--
|
|
|
|
r.current = r.previous_lines[r.search_index]
|
|
|
|
r.cursor = r.current.len
|
|
|
|
r.refresh_line()
|
|
|
|
}
|
2019-09-05 13:55:28 +02:00
|
|
|
|
|
|
|
fn (r mut Readline) suspend() {
|
|
|
|
C.raise(C.SIGSTOP)
|
|
|
|
r.refresh_line()
|
|
|
|
}
|