Caleb Hattingh
Caleb Hattingh
(Oh and I forgot to mention, Python 3.8.3)
Thanks for the detailed report. I will have a look in the next few days when I get a chance.
Ok, I had a quick look at this. There are two parts to discuss: 1. Interpretation of `CancelledError` as unexpected behaviour. 2. Calling `loop.stop` inside `main` Let's deal with them...
@NDNM1408 did you manage to resolve your issue?
Assume that the issue is resolved, since there is no feedback for 4 months.
[CopilotChat.nvim](https://github.com/CopilotC-Nvim/CopilotChat.nvim) uses CTRL-s to submit the prompt (mnemonic is "submit").
I noticed recently using Claude Code within a Jetbrains term, Shift-Enter now does work for newlines (and Enter for submit).
@bogini To get SHIFT-ENTER to insert newlines using Claude Code within Kitty Term, one can add this to their `~/.config/kitty/kitty.conf`: ``` map --when-focus-on title:claude shift+enter send_text normal,application \n ``` What...
Thanks @hadrian-reppas and @pitrou for fixing this ❤️ For interest sake, if anyone else using `pd.read_parquet` (with the pyarrow engine) happens to find this issue before pandas adds support for...
@pascalwhoop @redfave I think `use_pyarrow` does appends correctly: ```python # main2.py import polars as pl kwargs = dict( use_pyarrow=True, pyarrow_options=dict(partition_cols=['type']) ) df = pl.DataFrame( { 'type': ['a','b'], 'date': ['2024-08-15','2024-08-16'], 'value':...