Blaž Hrastnik
a964cbae65
Extract handle_debugger_message, we should avoid bloating tokio::select!
2021-08-22 15:36:07 +09:00
Dmitry Sharshakov
91f2c60b36
Jump to stack pointer when stopped
2021-08-22 09:28:50 +03:00
Blaž Hrastnik
6dd7dc4eb2
fix: xsel copy should not freeze the editor
...
If using --nodetach, xsel would end up continually running in the
foreground, so the command execution would never finish.
Fixes #630
2021-08-22 15:01:12 +09:00
Blaž Hrastnik
607b92b2e3
fix: Place the cursor on the start of the selected symbol
...
Fixes #626
2021-08-22 15:00:07 +09:00
Dmitry Sharshakov
89ad54a2e5
Add variable type to output
2021-08-22 08:31:01 +03:00
Dmitry Sharshakov
cc66475592
Add commands for variable introspection
2021-08-22 08:25:38 +03:00
Kirawi
59e0ceef8c
better panic messages for when you're missing selection scopes ( #608 )
2021-08-22 11:15:33 +09:00
Dmitry Sharshakov
95ba4ff5bd
Hide stack pointer when continued
2021-08-21 21:00:18 +03:00
Dmitry Sharshakov
f3e47bfee4
Disable continuing when running
2021-08-21 20:55:45 +03:00
Dmitry Sharshakov
5230a2b669
Continue command in keymap
2021-08-21 20:44:14 +03:00
Dmitry Sharshakov
66c035fa99
Continue command
2021-08-21 20:42:13 +03:00
Dmitry Sharshakov
6709b4242f
Drop and terminate debugger
2021-08-21 20:38:03 +03:00
Dmitry Sharshakov
26dee49dc9
Add command to detach debugger
2021-08-21 20:33:56 +03:00
Dmitry Sharshakov
462c8a6ec8
Show debugger output in the statusline
2021-08-21 20:29:01 +03:00
Dmitry Sharshakov
afeaba1113
add rx dispatcher to examples
2021-08-21 20:19:11 +03:00
Dmitry Sharshakov
5a06263b78
report status when target started or stopped
2021-08-21 20:08:37 +03:00
Dmitry Sharshakov
bcab93c94e
Update editor window when stopped
2021-08-21 17:26:51 +03:00
Dmitry Sharshakov
a938f5a87a
refactor: handle DAP events in editor main loop
2021-08-21 17:21:35 +03:00
Dmitry Sharshakov
3fc501c99f
Correctly display 1-based breakpoints
2021-08-21 15:17:25 +03:00
Dmitry Sharshakov
7087558918
Don't leave debugged programs running
2021-08-21 15:14:29 +03:00
Dmitry Sharshakov
56bddb12f8
Highlight line number of stack pointer
2021-08-21 14:58:05 +03:00
Dmitry Sharshakov
5f5b383979
Fix clippy warnings
2021-08-21 14:35:53 +03:00
Dmitry Sharshakov
6458edecfd
Add stack pointer display when stopped
2021-08-21 14:15:29 +03:00
Gokul Soumya
f9375f449c
Refactor new Rect construction ( #575 )
...
* Refactor new Rect construction
Introduces methods that can be chained to construct new Rects
out of pre-existing ones
* Clamp x and y to edges in Rect chop methods
* Rename Rect clipping functions
2021-08-21 14:21:20 +09:00
Dmitry Sharshakov
738e8a4dd3
Unify init and launch commands
2021-08-20 19:11:37 +03:00
Dmitry Sharshakov
9e22842d51
move debug command to keybinding
2021-08-20 19:06:52 +03:00
Dmitry Sharshakov
e2c74d26e0
Add command to run debug target
2021-08-20 18:18:35 +03:00
Dmitry Sharshakov
c4970c617e
make CI green
2021-08-20 16:48:59 +03:00
Yusuf Bera Ertan
ac8bc54108
fix: add missing optional keyword to protobuf syntax
2021-08-20 19:52:21 +09:00
Blaž Hrastnik
a54b09e3fe
dap: Split out launch from init
2021-08-20 14:06:55 +09:00
Blaž Hrastnik
94a1951d40
Work towards a breakpoint UI
2021-08-20 13:51:38 +09:00
Blaž Hrastnik
8759dc7e33
Add Default to some structs
2021-08-20 13:48:33 +09:00
Blaž Hrastnik
86102a651f
wip
2021-08-20 13:48:33 +09:00
Blaž Hrastnik
2094ff1aaf
Silence TCP client messages on stdout, log them in the future
2021-08-20 13:48:33 +09:00
Blaž Hrastnik
d39baa3b4e
Start integrating into the editor's event loop
2021-08-20 13:48:32 +09:00
Blaž Hrastnik
0300dbdeb3
Avoid cloning a request on send
2021-08-20 13:43:54 +09:00
Blaž Hrastnik
54dc2f8107
Fix example compilation
2021-08-20 13:43:54 +09:00
Blaž Hrastnik
8fbda0abaf
fix: Used the wrong type for variables
2021-08-20 13:43:54 +09:00
Blaž Hrastnik
184abdc510
dap: Significantly simplify code using the Request trait
2021-08-20 13:43:54 +09:00
Blaž Hrastnik
3a9e1c305b
Refactor types, add a Request trait
2021-08-20 13:43:54 +09:00
Blaž Hrastnik
2d1ae2e44b
dap: Split types off into types.rs
2021-08-20 13:43:54 +09:00
Blaž Hrastnik
6225401e84
A request always needs to have a response, per spec (the body can be empty)
2021-08-20 13:43:54 +09:00
Blaž Hrastnik
3f62799656
Get cargo check to pass in the subcrate
2021-08-20 13:43:54 +09:00
Dmitry Sharshakov
b9797a7dd2
client: support tcp_process transport
2021-08-20 13:43:54 +09:00
Dmitry Sharshakov
6c0f7eafc3
examples: continue handling output events
2021-08-20 13:43:54 +09:00
Dmitry Sharshakov
279db98d3c
refactor: use tagged enum for handling DAP payloads
2021-08-20 13:43:54 +09:00
Dmitry Sharshakov
36fb8d1b1a
examples: make examples identical
2021-08-20 13:43:54 +09:00
Dmitry Sharshakov
f92fb966c0
working lldb example
2021-08-20 13:43:54 +09:00
Dmitry Sharshakov
ae32159247
Revert "compat: don't wait for launch and attach response"
...
This reverts commit 766e3380622e2c7ddf5051ed672b78ece8d99f1f.
Not required for lldb-vscode
2021-08-20 13:43:54 +09:00
Dmitry Sharshakov
4f2b8fb05a
dap-dlv: rename from dap-go
2021-08-20 13:43:54 +09:00