This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
Releases: dbgx/lldb.nvim
Releases · dbgx/lldb.nvim
v0.7
Changes from previous release:
- New command
:LLsession
to start a new debug session, save the current session (totally unrelated to vim sessions), and load a session from an existing file (json). - Removed all LLDB commands of the form
:LL-
, replaced with a single command:LL <args>
which can execute any command. - Define modes in the session file. Use the command
:LLmode
to change the current mode. - New command
:LLstdin
to put a string into stdin of the process - Several stability and usability improvements, bugfixes
- New LLDB logs buffer (stdout and stderr of the process are also displayed here)
- The default "debug layout" has windows are arranged across 2 tabs. Customizing layout should use callbacks.
- Syntax highlighting for all debug-buffers
- Simplified display of registers and local variables
- New test scripts
v0.3
v0.2
New features:
- Fully asynchronous: process state (stopped and running) change events are processed in a separate thread.
- Improved robustness: Errors are caught and logged to
$NVIM_PYTHON_LOG_FILE
, without killing the plugin for a lot of cases. - Clean exit from debug mode using LLstop command.
- Customize disassembly buffer using LLdisassembly command.