Rust, RR, Neovim: A perfect debug combination
1–10 of 102 posts
Re: Rust, RR, Neovim: A perfect debug combination
#2Re: Rust, RR, Neovim: A perfect debug combination
#3Re: Rust, RR, Neovim: A perfect debug combination
#4Re: Rust, RR, Neovim: A perfect debug combination
#5Can someone explain what I am looking at here with this? Genuine question.
Neovim - Text editor popular for people who like terminals (forked from vim)
RR - Debugging tool that allows you to record failures/errors and play them back, facilitating easier debugging and reproduction (simplified: basically gdb on steroids)
All together (this repository) - A editor plugin for neovim users who use Rust, to use RR directly in neovim.
Re: Rust, RR, Neovim: A perfect debug combination
#6Unfortunately using rr to debug a bigger application with lots of RAM access is not feasible.
Re: Rust, RR, Neovim: A perfect debug combination
#7rr is basically black magic
Re: Rust, RR, Neovim: A perfect debug combination
#8Re: Rust, RR, Neovim: A perfect debug combination
#9Re: Rust, RR, Neovim: A perfect debug combination
#10Only if you're debugging tests. Unfortunately using rr to debug a bigger application with lots of RAM access is not feasible.
In their example they debug Firefox which I would consider a big application. Of course there are many levels above, and maybe you are talkning about tens of GB of memory usage?