dap: Remap keys, match current thread behavior from dap-mode, switch-thread

This commit is contained in:
Blaž Hrastnik 2021-08-29 23:28:31 +09:00
parent 03b2d81406
commit 986828e75c
5 changed files with 50 additions and 23 deletions

View file

@ -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,
};