mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Disable continuing when running
This commit is contained in:
parent
5230a2b669
commit
f3e47bfee4
3 changed files with 15 additions and 0 deletions
|
@ -30,6 +30,7 @@ pub struct Client {
|
|||
pub breakpoints: HashMap<PathBuf, Vec<SourceBreakpoint>>,
|
||||
// TODO: multiple threads support
|
||||
pub stack_pointer: Option<StackFrame>,
|
||||
pub is_running: bool,
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
@ -51,6 +52,7 @@ impl Client {
|
|||
//
|
||||
breakpoints: HashMap::new(),
|
||||
stack_pointer: None,
|
||||
is_running: false,
|
||||
};
|
||||
|
||||
tokio::spawn(Self::recv(server_rx, client_rx));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue