Andy Kluger
Andy Kluger
Currently the login process grants permission to "read and write all public and private repository data" -- which is more than I'm willing to give, especially considering I only want...
```python from dataclasses import dataclass @dataclass class CoolData: definitely_float: float ``` That last line is flagged with E704 as long as the variable name starts with "def" while I would...
```python from dataclasses import dataclass @dataclass class CoolData: cool_float: float=12 ``` That last line gets flagged with E225, while I would expect it not get flagged at all, since it...
[PEP 563 - Postponed Evaluation of Annotations](https://www.python.org/dev/peps/pep-0563/) ```python from __future__ import annotations class Thing: def __init__(thing: Thing=None): pass ``` ## Expected Behaviour No errors shown ## Actual Behaviour `Undefined name...
Thanks for this addon! I've got it working with the button, but either I can't figure out how to properly get context menu items, or that's not working. Arch Linux...
I have hundreds of playlists, and would often like to add a song to a particular playlist that I know by name, but it's very tedious to page through the...
It would be great to have a shortcut to remove duplicate tracks from the queue, especially after adding a bunch of playlists to it. `shift`+`d`?
I play the same big playlists a lot, and would like to randomize the playback order each time. But I also want to simply go through a song list from...
Hello! Sometimes I begin typing the next command while the previous one is running, and this works, even with this bug. But the prompt display gets temporarily mangled in this...
I'm looking for a change like the following (but this doesn't work and I'm not sure why): ```diff - AGKOZAK[PROMPT]+='%(?..%B%F{${AGKOZAK_COLORS_EXIT_STATUS:-red}}(%?%)%f%b )' + AGKOZAK[PROMPT]+='${${pipestatus:#0}:+%B%F{${AGKOZAK_COLORS_EXIT_STATUS:-red}\}(${(j:|:)pipestatus})%f%b }' ``` Here's how something similar looks...