diff --git a/versions/merge/docs/api/hilbish/hilbish.editor/index.html b/versions/merge/docs/api/hilbish/hilbish.editor/index.html index f1f6697..dfa683c 100644 --- a/versions/merge/docs/api/hilbish/hilbish.editor/index.html +++ b/versions/merge/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/versions/merge/docs/api/hilbish/index.html b/versions/merge/docs/api/hilbish/index.html index 6b40408..c41b18d 100644 --- a/versions/merge/docs/api/hilbish/index.html +++ b/versions/merge/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/versions/merge/docs/api/hilbish/index.xml b/versions/merge/docs/api/hilbish/index.xml index 6bbc313..fe6d088 100644 --- a/versions/merge/docs/api/hilbish/index.xml +++ b/versions/merge/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/versions/merge/docs/api/hilbish/hilbish.history/Mon, 01 Jan 0001 00:00:00 +0000https://rosettea.github.io/Hilbish/versions/merge/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/versions/merge/index.xml b/versions/merge/index.xml index 9df30b2..052eda9 100644 --- a/versions/merge/index.xml +++ b/versions/merge/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/versions/merge/docs/api/hilbish/hilbish.history/Mon, 01 Jan 0001 00:00:00 +0000https://rosettea.github.io/Hilbish/versions/merge/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.