mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Add eval command
This commit is contained in:
parent
838f69929d
commit
3197c2536e
3 changed files with 67 additions and 0 deletions
|
@ -352,4 +352,19 @@ impl Client {
|
|||
|
||||
self.request::<requests::Pause>(args).await
|
||||
}
|
||||
|
||||
pub async fn eval(
|
||||
&mut self,
|
||||
expression: String,
|
||||
frame_id: Option<usize>,
|
||||
) -> Result<requests::EvaluateResponse> {
|
||||
let args = requests::EvaluateArguments {
|
||||
expression,
|
||||
frame_id,
|
||||
context: None,
|
||||
format: None,
|
||||
};
|
||||
|
||||
self.request::<requests::Evaluate>(args).await
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue