Manuel de Prada Corral
Manuel de Prada Corral
I want to add another suggestion: being able to select files in the file browser. So 1 click-> select, 2 click -> download. In this way, it would be possible...
> Codebrowser - behaves as I like > Notepad++ - behaves as you would like > Chrome - behaves as you would like > Notepad - behaves as I would...
May be a good idea. Looks like that change would need to be done in src/qcodeedit/lib, if anyone wants to give it a try and start searching...
@JustAnotherArchivist is right. Warcio fails to decode and reencode again this file for example: [test.warc.gz](https://github.com/webrecorder/warcio/files/7238133/1117wb-33.warc.gz) In particular, a record from the file has this headers: > HTTP/1.1 200 OK Date:...
I created a pull request with a temporary fix so at least WARCIO doesn't terminate when this happens.
In fact, this is something that comes from the "click" package which typer uses as a base. If it helps, it comes from here: https://github.com/pallets/click/blob/dc918b48fb9006be683a684b42cc7496ad649b83/src/click/core.py#L2633
This is also an issue with Buttons. Expo-router Link component, when used with `asChild` passes a ref. My solution for now to ignote the ref: ``` export const MainButton =...
I will leave here the full copy-paste solution for dark mode, using the approach from the first post: ``` const themes = { light: { calendarBackground: 'white', dayTextColor: 'black', monthTextColor:...
> Yeah this is pretty annoying. Is there any way to disable this behaviour? There doesn't seem to be anything in `typer.Option()`. In fact I couldn't find any reference documentation...
> Ok this comes [from `get_command_name()`](https://github.com/tiangolo/typer/blob/e0b207f3f577cb2e59fdd60da39686a2f5ed0e77/typer/main.py#L537). > > You can fix it like this: > > ``` > typer.main.get_command_name = lambda name: name > ``` > > I suggest an...