2022-12-15 04:00:54 +00:00
|
|
|
---
|
2023-12-26 03:08:29 +00:00
|
|
|
title: Module hilbish.editor
|
2022-12-15 04:00:54 +00:00
|
|
|
description: interactions for Hilbish's line reader
|
|
|
|
layout: doc
|
|
|
|
menu:
|
|
|
|
docs:
|
|
|
|
parent: "API"
|
|
|
|
---
|
|
|
|
|
|
|
|
## Introduction
|
|
|
|
The hilbish.editor interface provides functions to
|
|
|
|
directly interact with the line editor in use.
|
|
|
|
|
|
|
|
## Functions
|
2023-12-26 03:08:29 +00:00
|
|
|
|||
|
|
|
|
|----|----|
|
|
|
|
|<a href="#editor.getLine">getLine() -> string</a>|Returns the current input line.|
|
|
|
|
|<a href="#editor.getVimRegister">getVimRegister(register) -> string</a>|Returns the text that is at the register.|
|
|
|
|
|<a href="#editor.insert">insert(text)</a>|Inserts text into the Hilbish command line.|
|
|
|
|
|<a href="#editor.getChar">getChar() -> string</a>|Reads a keystroke from the user. This is in a format of something like Ctrl-L.|
|
|
|
|
|<a href="#editor.setVimRegister">setVimRegister(register, text)</a>|Sets the vim register at `register` to hold the passed text.|
|
2022-12-15 04:00:54 +00:00
|
|
|
|
2023-12-26 03:08:29 +00:00
|
|
|
<hr>
|
|
|
|
<div id='editor.getLine'>
|
|
|
|
<h4 class='heading'>
|
|
|
|
hilbish.editor.getLine() -> string
|
|
|
|
<a href="#editor.getLine" class='heading-link'>
|
|
|
|
<i class="fas fa-paperclip"></i>
|
|
|
|
</a>
|
|
|
|
</h4>
|
2022-12-15 04:00:54 +00:00
|
|
|
|
2023-12-26 03:08:29 +00:00
|
|
|
Returns the current input line.
|
2022-12-15 04:00:54 +00:00
|
|
|
|
2023-12-26 03:08:29 +00:00
|
|
|
#### Parameters
|
|
|
|
This function has no parameters.
|
|
|
|
</div>
|
2023-10-25 04:41:53 +00:00
|
|
|
|
2023-12-26 03:08:29 +00:00
|
|
|
<hr>
|
|
|
|
<div id='editor.getVimRegister'>
|
|
|
|
<h4 class='heading'>
|
|
|
|
hilbish.editor.getVimRegister(register) -> string
|
|
|
|
<a href="#editor.getVimRegister" class='heading-link'>
|
|
|
|
<i class="fas fa-paperclip"></i>
|
|
|
|
</a>
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
Returns the text that is at the register.
|
|
|
|
|
|
|
|
#### Parameters
|
|
|
|
`string` **`register`**
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<div id='editor.insert'>
|
|
|
|
<h4 class='heading'>
|
|
|
|
hilbish.editor.insert(text)
|
|
|
|
<a href="#editor.insert" class='heading-link'>
|
|
|
|
<i class="fas fa-paperclip"></i>
|
|
|
|
</a>
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
Inserts text into the Hilbish command line.
|
|
|
|
|
|
|
|
#### Parameters
|
|
|
|
`string` **`text`**
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<div id='editor.getChar'>
|
|
|
|
<h4 class='heading'>
|
|
|
|
hilbish.editor.getChar() -> string
|
|
|
|
<a href="#editor.getChar" class='heading-link'>
|
|
|
|
<i class="fas fa-paperclip"></i>
|
|
|
|
</a>
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
Reads a keystroke from the user. This is in a format of something like Ctrl-L.
|
|
|
|
|
|
|
|
#### Parameters
|
|
|
|
This function has no parameters.
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<div id='editor.setVimRegister'>
|
|
|
|
<h4 class='heading'>
|
|
|
|
hilbish.editor.setVimRegister(register, text)
|
|
|
|
<a href="#editor.setVimRegister" class='heading-link'>
|
|
|
|
<i class="fas fa-paperclip"></i>
|
|
|
|
</a>
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
Sets the vim register at `register` to hold the passed text.
|
|
|
|
|
|
|
|
#### Parameters
|
|
|
|
`string` **`text`**
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2022-12-15 04:00:54 +00:00
|
|
|
|