Dheepak Krishnamurthy
Dheepak Krishnamurthy
I accidentally run `uv init` in my `~/projects` folder assuming it would prompt me for the directory and it created `~/projects/src`, `~/projects/README.md`, `~/projects/pyproject.toml`. I would prefer if it prompted for...
When I run `uv add numpy` (after adding some other dependencies successfully), I get an "No module named 'distutils'" error. I've just installed `uv` and ran `uv install python 3.12`...
Thanks for the amazing package! I wanted to check if there was a way to reverse the stacktrace produced by color_eyre? If there isn't a way to reverse the stacktrace,...
**Describe the bug** The `log` appears to be missing characters when highlighted. Here's the log before any of the problematic rows are highlighted (good): Here's the log when the second...
From https://docs.astral.sh/uv/pip/environments/#discovery-of-python-environments > When running a command that mutates an environment such as `uv pip sync` or `uv pip install`, uv will search for a virtual environment in the following...
This PR adds `reversed_stacktrace` as a configurable option that defaults to false, which keeps the default printing identical to the status quo. Forward: Reversed: This is a follow up to...
This PR adds a new method `Layout::overlap(true)`. This allows creating layouts with a single shared pixel for all segments. When `overlap(true)` is used, spacing is ignored and all segments will...
## Problem in `./src/layout/layout.rs` we currently use both: https://github.com/ratatui/ratatui/blob/eff582110be19226c57e5778590cc7a99018e1aa/src/layout/layout.rs#L2529 and https://github.com/ratatui/ratatui/blob/eff582110be19226c57e5778590cc7a99018e1aa/src/layout/layout.rs#L1198-L1199 These are inconsistent. ## Solution `assert_eq!` should be of the form: ``` assert_eq!(result, expected) ```
## Problem Currently when tests fail in layout tests, it is annoying to interpret what went wrong. The layout tests typically compare a vector of a tuple of position and...
When using the macros I'm able to write this: ```rust let text = text![line!["hello", "world"], "world"]; ``` But I get a compile error when I write this: ```rust let text...