mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
dap: Remap keys, match current thread behavior from dap-mode, switch-thread
This commit is contained in:
parent
03b2d81406
commit
986828e75c
5 changed files with 50 additions and 23 deletions
|
@ -31,7 +31,7 @@ pub struct Client {
|
|||
pub breakpoints: HashMap<PathBuf, Vec<SourceBreakpoint>>,
|
||||
// TODO: multiple threads support
|
||||
pub stack_pointer: Option<StackFrame>,
|
||||
pub stopped_thread: Option<usize>,
|
||||
pub thread_id: Option<usize>,
|
||||
pub is_running: bool,
|
||||
}
|
||||
|
||||
|
@ -77,7 +77,7 @@ impl Client {
|
|||
//
|
||||
breakpoints: HashMap::new(),
|
||||
stack_pointer: None,
|
||||
stopped_thread: None,
|
||||
thread_id: None,
|
||||
is_running: false,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue