diff --git a/docs/api/hilbish/hilbish.editor/index.html b/docs/api/hilbish/hilbish.editor/index.html index 0200b83..dae1523 100644 --- a/docs/api/hilbish/hilbish.editor/index.html +++ b/docs/api/hilbish/hilbish.editor/index.html @@ -7,5 +7,7 @@ directly interact with the line editor in use.

getLine() -> string

Returns the current input line.

getVimRegister(register) -> string

Returns the text that is at the register.

insert(text) -

Inserts text into the line.

setVimRegister(register, text) +

Inserts text into the line.

getChar() -> string +

Reads a keystroke from the user. This is in a format +of something like Ctrl-L..

setVimRegister(register, text)

Sets the vim register at register to hold the passed text.

\ No newline at end of file diff --git a/docs/api/hilbish/index.html b/docs/api/hilbish/index.html index 86e933d..e7ef024 100644 --- a/docs/api/hilbish/index.html +++ b/docs/api/hilbish/index.html @@ -63,6 +63,7 @@ a desination.

Methods

Sets/toggles the option of automatically flushing output. A call with no argument will toggle the value.

flush()

Flush writes all buffered input to the sink.

read() -> string -

Reads input from the sink.

write(str) +

Reads a liine of input from the sink.

readAll() -> string +

Reads all input from the sink.

write(str)

Writes data to a sink.

writeln(str)

Writes data to a sink with a newline at the end.

\ No newline at end of file diff --git a/docs/api/hilbish/index.xml b/docs/api/hilbish/index.xml index 09a27e5..730c7c9 100644 --- a/docs/api/hilbish/index.xml +++ b/docs/api/hilbish/index.xml @@ -8,6 +8,7 @@ handler(line, pos) The handler function is the callback for tab completion in Hi Functions getLine() -> string Returns the current input line. getVimRegister(register) -> string Returns the text that is at the register. insert(text) Inserts text into the line. +getChar() -> string Reads a keystroke from the user. This is in a format of something like Ctrl-L.. setVimRegister(register, text) Sets the vim register at register to hold the passed text.Interface hilbish.historyhttps://rosettea.github.io/Hilbish/docs/api/hilbish/hilbish.history/Mon, 01 Jan 0001 00:00:00 +0000https://rosettea.github.io/Hilbish/docs/api/hilbish/hilbish.history/Introduction The history interface deals with command history. This includes the ability to override functions to change the main method of saving history. Functions add(cmd) Adds a command to the history. all() -> table Retrieves all history. diff --git a/index.xml b/index.xml index d5d4842..d2489b9 100644 --- a/index.xml +++ b/index.xml @@ -24,6 +24,7 @@ handler(line, pos) The handler function is the callback for tab completion in Hi Functions getLine() -> string Returns the current input line. getVimRegister(register) -> string Returns the text that is at the register. insert(text) Inserts text into the line. +getChar() -> string Reads a keystroke from the user. This is in a format of something like Ctrl-L.. setVimRegister(register, text) Sets the vim register at register to hold the passed text.Interface hilbish.historyhttps://rosettea.github.io/Hilbish/docs/api/hilbish/hilbish.history/Mon, 01 Jan 0001 00:00:00 +0000https://rosettea.github.io/Hilbish/docs/api/hilbish/hilbish.history/Introduction The history interface deals with command history. This includes the ability to override functions to change the main method of saving history. Functions add(cmd) Adds a command to the history. all() -> table Retrieves all history.